1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
|
% pycbf.w
% nuweb source file used to create pycbf documentation
%
% pycbf - python binding to the CBFlib library
%
% Copyright (C) 2005 Jonathan Wright
% ESRF, Grenoble, France
% email: wright@@esrf.fr
%
% Revised for CBFlib 0.9 releases, Herbert J. Bernstein, 23 Aug 2010
%
%######################################################################
%# #
%# YOU MAY REDISTRIBUTE THE CBFLIB PACKAGE INCLUDING PYCBF UNDER THE #
%# TERMS OF THE GPL #
%# #
%# ALTERNATIVELY YOU MAY REDISTRIBUTE THE CBFLIB API INCLUDING PYCBF #
%# UNDER THE TERMS OF THE LGPL #
%# #
%######################################################################
%
%########################### GPL NOTICES ##############################
%# #
%# This program is free software; you can redistribute it and/or #
%# modify it under the terms of the GNU General Public License as #
%# published by the Free Software Foundation; either version 2 of #
%# (the License, or (at your option) any later version. #
%# #
%# This program is distributed in the hope that it will be useful, #
%# but WITHOUT ANY WARRANTY; without even the implied warranty of #
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
%# GNU General Public License for more details. #
%# #
%# You should have received a copy of the GNU General Public License #
%# along with this program; if not, write to the Free Software #
%# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA #
%# 02111-1307 USA #
%# #
%######################################################################
%
%######################### LGPL NOTICES ###############################
%# #
%# This library is free software; you can redistribute it and/or #
%# modify it under the terms of the GNU Lesser General Public #
%# License as published by the Free Software Foundation; either #
%# version 2.1 of the License, or (at your option) any later version. #
%# #
%# This library is distributed in the hope that it will be useful, #
%# but WITHOUT ANY WARRANTY; without even the implied warranty of #
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU #
%# Lesser General Public License for more details. #
%# #
%# You should have received a copy of the GNU Lesser General Public #
%# License along with this library; if not, write to the Free #
%# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, #
%# MA 02110-1301 USA #
%# #
%######################################################################
%
% Nuweb formatted latex file
% Most of this is standard latex with code rolled in
% Anything to do with @@ characters is probably specific to nuweb
%
%
% The word FIXME anywhere in this document indicates
% an area where more attention is still needed.
%
% Note that this file (pycbf.w) does not copy and paste from CBFlib
% (or anywhere) except in the hand wrapped function prototypes.
%
%
%
\documentclass[10pt,a4paper,twoside,notitlepage]{article}
\usepackage{graphics} % For the pictures
\usepackage{anysize} % Try to circumvent Latex default margins
\usepackage{fancyhdr}
\usepackage[dvipdfm,bookmarks=true,backref,bookmarksnumbered=true,
bookmarkstype=toc]{hyperref}
\newcommand{\var}[1]{\textbf{\textsf{#1}}} % highlight variables in text
\newcommand{\code}[1]{\textbf{\textsf{#1}}} % highlight code in text
\newcommand{\param}[1]{\textbf{\textsf{#1}}} % ... parameters ...
\newcommand{\mb} [1] {\mathbf{#1}}
\begin{document}
\marginsize{1.5cm}{1.5cm}{1.5cm}{1.5cm} % Needs anysize
%\pagestyle{headings} % These are ugly - fix them somehow?
\pagestyle{fancy}
%$\renewcommand{\chaptermark}[1]{
%$ \markboth{\chaptername
%$ \ \thechapter.\ #1} {} }
\renewcommand{\sectionmark}[1]{
\markright {
\ \thesection.\ #1} {} }
\fancyhead[LE,RO]{\rightmark}
\fancyhead[LO,RE]{\leftmark}
\fancyfoot[C]{\today}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,RE]{J. P. Wright}
\renewcommand{\footrulewidth}{0.4pt}
\pagenumbering{arabic} % Page numbers
\title{\textbf{\textsf{PyCBF}} \\ A python binding to the CBFlib library}
\author{Jon P. Wright \\ Anyone who wishes to contribute, please do!}
\date{Started Dec 12, 2005, already it is \today}
\maketitle
\abstract{
Area detectors at synchrotron facilities can result in huge amounts of data
being generated very rapidly.
The IUCr (International Union of Crystallography) has devised a standard file
format for storing and annotating such data, in order that it might be more
easily interchanged and exploited.
A c library which gives access to this file format has been developed
by Paul Ellis and Herbert Bernstein (Version 0.7.4,
http://www.bernstein-plus-sons.com/software/CBF/).
In this document a python interface is developed using the SWIG
(http://www.swig.org)
package in order to give the author easy access to binary cif files.
}
\tableofcontents
\markboth{}{}
\section*{Index of file names}
@f
\section*{Index of macro names}
@m
\section*{Things to do}
\begin{itemize}
\item Write test code to test each and every function for good and bad args etc
\end{itemize}
\section{Introduction}
The CBFlib library (version 0.7.4) is written in the C language, offering C
(and C++)
programmers a convenient interface to such files.
The current author uses a different language (python) from day to day and
so a python interface was desired.
After a short attempt to make a quick and dirty SWIG interface it was decided
that in the long run it would be better to write a proper interface for python.
All of the functions in the library return an integer reflecting error status.
Usually these integers seem to be zero, and a non-zero return value appears
to mean an error occurred.
Actual return values are returned via pointers in argument lists.
In order to simplify the authors life (as a user) all of those integers have
been made to disappear if they are zero, and cause an ``exception'' to
be generated if they are not zero.
This solution might not be the best thing to do, and it can always be changed
where the return value is intended to normally be used.
Actual return values which were passed back via pointer arguments are now
just passed back as (perhaps multiple) return values.
We must look out for INOUT arguments, none seem to have been found yet, but there
might be exceptions.
The author has a vague suspicion that python functions generally do not modify their
arguments, but this might be wrong.
The library appears to define (at least) three objects. The one we started on
was the cbf\_handle\_struct defined in cbf.h.
Many of the functions have their first argument as a pointer to one
of these structures. Therefore we make this structure an object and then
everything which uses it as first argument is a member function for that
object.
In order to pass image data back and forth there is a difficulty that python
seems to lack a good way to represent large arrays.
The standard library offers an "array" object which claims to efficiently
hold homogenous numerical data.
Sadly this seems to be limited to one-dimensional arrays.
The builtin string object can hold binary data and this was chosen as
the way to pass the actual binary back and forth between python and CBFlib.
Unfortunately this means the binary data are pretty useless when they arrive
on the python side, so helper functions are provided to convert the data
to a python (standard library) 1D array and also to a "Numeric" array or a
"Numarray" array.
The latter two are popular extension modules for manipulating large arrays.
\section{Installation prerequisites}
The document you are reading was generated from a nuweb source file. This
is something very similar to latex with a few extensions for writing out
source code files. As such it keeps together the whole package in a single file
and makes it easier to write documentation. You will need a to obtain the
preprocessing tool nuweb (perhaps from http://nuweb.sourceforge.net) in
order to build from scratch with the file pycbf.w. Preproccessed output
is hopefully also available to you.
We do not recommend editing the SWIG generated wrappers!!
Only python version 2.4 has been targetted originally (other versions?) so
that you will probably want to have that version of python installed.
We are building binary extensions, so you also need a working c compiler.
The compiler used by the author was gcc (for both windows and unix) with
the mingw version under windows.
Finally, you need a copy of swig (from www.swig.org) in order to (re)generate
the c wrappers.
In case all that sounds scary, then fear not, it is likely that a single download
for windows will just work with the right version of python. Unix systems
come with many of those things available anyway.
@i pycbf_i.w
Despite the temptation to just throw everything from the c header files
into the interface, a short experience suggested we are better off to pull
out only the parts we want and make the calls more pythonic
The input files "CBFhandlewrappers.i", etc. are created by the make\_pycbf.py
script.
\subsection{Exceptions}
We attempt to catch the errors and pass them back to python as
exceptions. This could still do with a little work to propagage
back the calls causing the errors.
Currently there are two global constants defined, called error\_message
and error\_status.
These are filled out when an error occurred, converting the numerical
error value into something the author can read.
There is an implicit assumption that if the library is used
correctly you will not normally get exceptions.
This should be addressed further in areas like file opening,
proper python exceptions should be returned.
See the section on exception handling in pycbf.i, above.
Currently you get a meaningful string back. Should perhaps look into
defining these as python exception classes?
In any case - the SWIG exception handling is defined via the following.
It could have retained the old style if(status = action) but then
harder to see what to return...
\section{Docstrings}
The file doc/CBFlib.html is converted to a file CBFlib.txt to generate the
docstrings and many of the wrappers. The conversion was done by the
text-based browser, links.
This text document is then parsed by a python script called make\_pycbf.py
to generate the .i files which are included by the swig wrapper generator.
Unfortunately this more complicated for non-python users but seemed less
error prone and involved less typing for the author.
@i make_pycbf.w
\section{Building python extensions - the setup file}
Based on the contents of the makefile for CBFlib we will just
pull in all of the library for now. We use the distutils approach.
@o py2setup_py.m4 -i -t
@{
#
# py2setup_py.m4
#
`# Import the things to build python binary extensions
from distutils.core import setup, Extension
# Make our extension module
e = Extension(''`_py2cbf''`,
sources = ["pycbf_wrap.c","../src/cbf_simple.c"],
extra_compile_args=["-g"],
'm4_ifelse(regexlibdir,`NOREGEXLIBDIR',`library_dirs=["../solib/","../lib/"],',`library_dirs=["../solib/","../lib/","'regexlibdir`"],')`
'm4_ifelse(regexlib,`',`libraries=["cbf"],', `m4_ifelse(regexlib2,`',`libraries=["cbf","'regexlib`"],',`libraries=["cbf","'regexlib`","'regexlib2`"],')' )`
include_dirs = ["../include","'hdf5_prefix`/include"] )
# Build it
setup(name="_py2cbf",ext_modules=[e],)'
@}
\section{Building and testing the resulting package}
Aim to build and test in one go (so that the source and the binary match!!)
@o win32.bat -i -t
@{
nuweb pycbf
latex pycbf
nuweb pycbf
latex pycbf
dvipdfm pycbf
nuweb pycbf
C:\python24\python make_pycbf.py > TODO.txt
"C:\program files\swigwin-1.3.31\swig.exe" -python pycbf.i
C:\python24\python setup.py build --compiler=mingw32
copy build\lib.win32-2.4\_py2cbf.pyd .
REM C:\python24\python pycbf_test1.py
C:\python24\python pycbf_test2.py
C:\python24\python pycbf_test3.py
C:\python24\lib\pydoc.py -w pycbf
C:\python24\python makeflatascii.py pycbf_ascii_help.txt
@}
@o linux.sh
@{
nuweb pycbf
latex pycbf
nuweb pycbf
latex pycbf
dvipdfm pycbf
nuweb pycbf
lynx -dump CBFlib.html > CBFlib.txt
python make_pycbf.py
swig -python pycbf.i
python setup.py build
rm _py2cbf.so
cp build/lib.linux-i686-2.4/_py2cbf.so .
python pycbf_test1.py
python pycbf_test2.py
pydoc -w pycbf
python makeflatascii.py pycbf_ascii_help.txt
@}
This still gives bold in the ascii (=sucks)
@o makeflatascii.py -i -t
@{
import pydoc, pycbf, sys
f = open(sys.argv[1],"w")
pydoc.pager=lambda text: f.write(text)
pydoc.TextDoc.bold = lambda self,text : text
pydoc.help(pycbf)
@}
\section{Debugging compiled extensions}
Since it can be a bit of a pain to see where things go wrong here is a
quick recipe for poking around with a debugger:
\begin{verbatim}
amber $> gdb /bliss/users//blissadm/python/bliss_python/suse82/bin/python
GNU gdb 5.3
Copyright 2002 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i586-suse-linux"...
(gdb) br _PyImport_LoadDynamicModule
Breakpoint 1 at 0x80e4199: file Python/importdl.c, line 28.
\end{verbatim}
This is how to get a breakpoint when loading the module
\begin{verbatim}
(gdb) run
Starting program: /mntdirect/_bliss/users/blissadm/python/bliss_python/suse82/bin/python
[New Thread 16384 (LWP 18191)]
Python 2.4.2 (#3, Feb 17 2006, 09:12:13)
[GCC 3.3 20030226 (prerelease) (SuSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pycbf
[Switching to Thread 16384 (LWP 18191)]
Breakpoint 1, _PyImport_LoadDynamicModule (name=0xbfffd280 "_py2cbf.so",
pathname=0xbfffd280 "_py2cbf.so", fp=0x819e208) at Python/importdl.c:28
28 if ((m = _PyImport_FindExtension(name, pathname)) != NULL) {
(gdb) finish
Run till exit from #0 _PyImport_LoadDynamicModule (
name=0xbfffd280 "_py2cbf.so", pathname=0xbfffd280 "_py2cbf.so", fp=0x819e208)
at Python/importdl.c:28
load_module (name=0xbfffd710 "_py2cbf", fp=0x819e208,
buf=0xbfffd280 "_py2cbf.so", type=3, loader=0x405b44f4)
at Python/import.c:1678
1678 break;
Value returned is $1 = (PyObject *) 0x405662fc
(gdb) break cbf_read_file
Breakpoint 2 at 0x407f0508: file ../src/cbf.c, line 221.
(gdb) cont
Continuing.
\end{verbatim}
We now have a breakpoint where we wanted inside the dynamically loaded file.
\begin{verbatim}
>>> o=pycbf.cbf_handle_struct()
>>> o.read_file("../img2cif_packed.cif",pycbf.MSG_DIGEST)
Breakpoint 2, cbf_read_file (handle=0x81f7c08, stream=0x8174f58,
headers=136281096) at ../src/cbf.c:221
221 if (!handle)
(gdb)
\end{verbatim}
Now you can step through the c...
\section{Things which are currently missing}
This is the to do list. Obviously we could benefit a lot from more
extensive testing and checking of the docstrings etc.
\input "TODO.txt"
\section{Testing}
Some test programs to see if anything appears to work. Eventually
it would be good to write a proper unit test suite.
\subsection{Read a file based on cif2cbf.c}
This is a pretty ugly translation of the program cif2cbf.c skipping
all of the writing parts.
It appeared to work with the file img2cif\_packed.cif which is built
when you build CBFlib, hence that file is hardwired in.
@o pycbf_test1.py -i -t
@{
import pycbf
object = pycbf.cbf_handle_struct() # FIXME
object.read_file("../img2cif_packed.cif",pycbf.MSG_DIGEST)
object.rewind_datablock()
print "Found",object.count_datablocks(),"blocks"
object.select_datablock(0)
print "Zeroth is named",object.datablock_name()
object.rewind_category()
categories = object.count_categories()
for i in range(categories):
print "Category:",i,
object.select_category(i)
category_name = object.category_name()
print "Name:",category_name,
rows=object.count_rows()
print "Rows:",rows,
cols = object.count_columns()
print "Cols:",cols
loop=1
object.rewind_column()
while loop is not 0:
column_name = object.column_name()
print "column name \"",column_name,"\"",
try:
object.next_column()
except:
break
print
for j in range(rows):
object.select_row(j)
object.rewind_column()
print "row:",j
for k in range(cols):
name=object.column_name()
print "col:",name,
object.select_column(k)
typeofvalue=object.get_typeofvalue()
print "type:",typeofvalue
if typeofvalue.find("bnry") > -1:
print "Found the binary!!",
s=object.get_integerarray_as_string()
print type(s)
print dir(s)
print len(s)
try:
import numpy
d = numpy.frombuffer(s,numpy.uint32)
# Hard wired Unsigned Int32
print d.shape
print d[0:10],d[d.shape[0]/2],d[-1]
print d[d.shape[0]/3:d.shape[0]/3+20]
d=numpy.reshape(d,(2300,2300))
# from matplotlib import pylab
# pylab.imshow(d,vmin=0,vmax=1000)
# pylab.show()
except ImportError:
print "You need to get numpy and matplotlib to see the data"
else:
value=object.get_value()
print "Val:",value,i
print
del(object)
#
print dir()
#object.free_handle(handle)
@}
\subsection{Try to test the goniometer and detector}
Had some initial difficulties but then downloaded an input cbf file which defines
a goniometer and detector.
The file was found in the example data which comes with CBFlib.
This test is clearly minimalistic for now - it only checks the objects
for apparent existence of
a single member function.
@o pycbf_test2.py -i -t
@{
import pycbf
obj = pycbf.cbf_handle_struct()
obj.read_file("../adscconverted.cbf",0)
obj.select_datablock(0)
g = obj.construct_goniometer()
print "Rotation axis is",g.get_rotation_axis()
d = obj.construct_detector(0)
print "Beam center is",d.get_beam_center()
print "Detector slow axis is", d.get_detector_axis_slow()
print "Detector fast axis is", d.get_detector_axis_fast()
print "Detector axes (fast, slow) are", d.get_detector_axes_fs()
@}
It appears to work - eventually. Surprising
\subsection{Test cases for the generics}
@o pycbf_test3.py -i -t
@{
import pycbf, unittest
class GenericTests(unittest.TestCase):
def test_get_local_integer_byte_order(self):
self.assertEqual( pycbf.get_local_integer_byte_order(),
'little_endian')
def test_get_local_real_byte_order(self):
self.assertEqual( pycbf.get_local_real_byte_order() ,
'little_endian')
def test_get_local_real_format(self):
self.assertEqual( pycbf.get_local_real_format(),
'ieee 754-1985')
def test_compute_cell_volume(self):
self.assertEqual( pycbf.compute_cell_volume((2.,3.,4.,90.,90.,90.)),
24.0)
if __name__=="__main__":
unittest.main()
@}
\subsection{Version of pycbf_test1 with write logic added}
@o pycbf_test4.py -i -t
@{
# version of pycbf_test1 with write logic added
import pycbf
object = pycbf.cbf_handle_struct()
newobject = pycbf.cbf_handle_struct()
object.read_file("../img2cif_packed.cif",pycbf.MSG_DIGEST)
object.rewind_datablock()
print "Found",object.count_datablocks(),"blocks"
object.select_datablock(0)
print "Zeroth is named",object.datablock_name()
newobject.force_new_datablock(object.datablock_name());
object.rewind_category()
categories = object.count_categories()
for i in range(categories):
print "Category:",i,
object.select_category(i)
category_name = object.category_name()
print "Name:",category_name,
newobject.new_category(category_name)
rows=object.count_rows()
print "Rows:",rows,
cols = object.count_columns()
print "Cols:",cols
loop=1
object.rewind_column()
while loop is not 0:
column_name = object.column_name()
print "column name \"",column_name,"\"",
newobject.new_column(column_name)
try:
object.next_column()
except:
break
print
for j in range(rows):
object.select_row(j)
newobject.new_row()
object.rewind_column()
print "row:",j
for k in range(cols):
name=object.column_name()
print "col:",name,
object.select_column(k)
newobject.select_column(k)
typeofvalue=object.get_typeofvalue()
print "type:",typeofvalue
if typeofvalue.find("bnry") > -1:
print "Found the binary!!",
s=object.get_integerarray_as_string()
print type(s)
print dir(s)
print len(s)
(compression, binaryid, elsize, elsigned, \
elunsigned, elements, minelement, maxelement, \
byteorder,dimfast,dimmid,dimslow,padding) = \
object.get_integerarrayparameters_wdims_fs()
if dimfast==0:
dimfast = 1
if dimmid==0:
dimmid = 1
if dimslow == 0:
dimslow = 1
print "compression: ",compression
print "binaryid", binaryid
print "elsize", elsize
print "elsigned", elsigned
print "elunsigned",elunsigned
print "elements", elements
print "minelement", minelement
print "maxelement", maxelement
print "byteorder", byteorder
print "dimfast", dimfast
print "dimmid", dimmid
print "dimslow",dimslow
print "padding", padding
newobject.set_integerarray_wdims_fs(\
pycbf.CBF_BYTE_OFFSET,binaryid,s,elsize,elsigned,\
elements,byteorder,dimfast,dimmid,dimslow,padding)
try:
import numpy
d = numpy.frombuffer(s,numpy.uint32)
# Hard wired Unsigned Int32
print d.shape
print d[0:10],d[d.shape[0]/2],d[-1]
print d[d.shape[0]/3:d.shape[0]/3+20]
d=numpy.reshape(d,(2300,2300))
# from matplotlib import pylab
# pylab.imshow(d,vmin=0,vmax=1000)
# pylab.show()
except ImportError:
print "You need to get numpy and matplotlib to see the data"
else:
value=object.get_value()
newobject.set_value(value)
print "Val:",value,i
print
del(object)
newobject.write_widefile("newtest1.cbf",pycbf.CBF,\
pycbf.MIME_HEADERS|pycbf.MSG_DIGEST|pycbf.PAD_4K,0)
#
print dir()
#object.free_handle(handle)
@}
\subsection{Processing of XFEL axes}
@o pycbf_testfelaxes.py -i -t
@{
import pycbf, sys
from decimal import Decimal, ROUND_HALF_UP
image_file = sys.argv[1]
cbf = pycbf.cbf_handle_struct()
cbf.read_widefile(image_file, pycbf.MSG_DIGEST)
for element in range(64):
d = cbf.construct_detector(element)
print "element:", element
v00 = d.get_pixel_coordinates(0, 0)
v01 = d.get_pixel_coordinates(0, 1)
v10 = d.get_pixel_coordinates(1, 0)
v11 = d.get_pixel_coordinates(1, 1)
prec = Decimal('1.000000000')
print '(0, 0) v00 [ %.9f %.9f %.9f ]' %(round(v00[0],9), round(v00[1],9), round(v00[2],9))
print '(0, 1) v01 [ %.9g %.9g %.9g ]' %(round(v01[0],9), round(v01[1],9), round(v01[2],9))
print '(1, 0) v10 [ %.9g %.9g %.9g ]' %(round(v10[0],9), round(v10[1],9), round(v10[2],9))
print '(1, 1) v11 [ %.9g %.9g %.9g ]' %(round(v11[0],9), round(v11[1],9), round(v11[2],9))
print "surface axes:", d.get_detector_surface_axes(0), d.get_detector_surface_axes(1)
print d.get_detector_surface_axes(0), "has", cbf.count_axis_ancestors(d.get_detector_surface_axes(0)), "ancestors"
print d.get_detector_surface_axes(1), "has", cbf.count_axis_ancestors(d.get_detector_surface_axes(1)), "ancestors"
cur_axis = d.get_detector_surface_axes(0)
count = cbf.count_axis_ancestors(cur_axis)
for index in range(count):
print "axis", cur_axis, "index: ", index
print " equipment", cbf.get_axis_equipment(cur_axis)
print " depends_on", cbf.get_axis_depends_on(cur_axis)
print " equipment_component", cbf.get_axis_equipment_component(cur_axis)
vector = cbf.get_axis_vector(cur_axis)
print " vector [ %.8g %.8g %.8g ]" % (round(vector[0],7), round(vector[1],7), round(vector[2],7))
offset = cbf.get_axis_offset(cur_axis)
print " offset [ %.8g %.8g %.8g ]" % (round(offset[0],7), round(offset[1],7), round(offset[2],7))
print " rotation", cbf.get_axis_rotation(cur_axis)
print " rotation_axis", cbf.get_axis_rotation_axis(cur_axis)
cur_axis = cbf.get_axis_depends_on(cur_axis)
@}
\section{Worked example 1 : xmas beamline + mar ccd detector at the ESRF}
Now for the interesting part. We will attempt to actually use pycbf for a real
dataprocessing task. Crazy you might think.
The idea is the following - we want to take the header information from some
mar ccd files (and eventually also the user or the spec control system) and
pass this information into cif headers which can be read by fit2d (etc).
\subsection{Reading marccd headers}
Some relatively ugly code which parses a c header and then tries to interpret
the mar ccd header format.
FIXME : byteswapping and ends???
@o xmas/readmarheader.py -i -t
@{#!/usr/bin/env python
import struct
# Convert mar c header file types to python struct module types
mar_c_to_python_struct = {
"INT32" : "i",
"UINT32" : "I",
"char" : "c",
"UINT16" : "H"
}
# Sizes (bytes) of mar c header objects
mar_c_sizes = {
"INT32" : 4,
"UINT32" : 4,
"char" : 1,
"UINT16" : 2
}
# This was worked out by trial and error from a trial image I think
MAXIMAGES=9
def make_format(cdefinition):
"""
Reads the header definition in c and makes the format
string to pass to struct.unpack
"""
lines = cdefinition.split("\n")
fmt = ""
names = []
expected = 0
for line in lines:
if line.find(";")==-1:
continue
decl = line.split(";")[0].lstrip().rstrip()
try:
[type, name] = decl.split()
except:
#print "skipping:",line
continue
# print "type:",type," name:",name
if name.find("[")>-1:
# repeated ... times
try:
num = name.split("[")[1].split("]")[0]
num = num.replace("MAXIMAGES",str(MAXIMAGES))
num = num.replace("sizeof(INT32)","4")
times = eval(num)
except:
print "Please decode",decl
raise
else:
times=1
try:
fmt += mar_c_to_python_struct[type]*times
names += [name]*times
expected += mar_c_sizes[type]*times
except:
#print "skipping",line
continue
#print "%4d %4d"%(mar_c_sizes[type]*times,expected),name,":",times,line
#print struct.calcsize(fmt),expected
return names, fmt
def read_mar_header(filename):
"""
Get the header from a binary file
"""
f = open(filename,"rb")
f.seek(1024)
header=f.read(3072)
f.close()
return header
def interpret_header(header, fmt, names):
"""
given a format and header interpret it
"""
values = struct.unpack(fmt,header)
dict = {}
i=0
for name in names:
if dict.has_key(name):
if type(values[i]) == type("string"):
dict[name] = dict[name]+values[i]
else:
try:
dict[name].append(values[i])
except:
dict[name] = [dict[name],values[i]]
else:
dict[name] = values[i]
i=i+1
return dict
# Now for the c definition (found on mar webpage)
# The following string is therefore copyrighted by Mar I guess
cdefinition = """
typedef struct frame_header_type {
/* File/header format parameters (256 bytes) */
UINT32 header_type; /* flag for header type
(can be used as magic number) */
char header_name[16]; /* header name (MMX) */
UINT32 header_major_version; /* header_major_version (n.) */
UINT32 header_minor_version; /* header_minor_version (.n) */
UINT32 header_byte_order;/* BIG_ENDIAN (Motorola,MIPS);
LITTLE_ENDIAN (DEC, Intel) */
UINT32 data_byte_order; /* BIG_ENDIAN (Motorola,MIPS);
LITTLE_ENDIAN (DEC, Intel) */
UINT32 header_size; /* in bytes */
UINT32 frame_type; /* flag for frame type */
UINT32 magic_number; /* to be used as a flag -
usually to indicate new file */
UINT32 compression_type; /* type of image compression */
UINT32 compression1; /* compression parameter 1 */
UINT32 compression2; /* compression parameter 2 */
UINT32 compression3; /* compression parameter 3 */
UINT32 compression4; /* compression parameter 4 */
UINT32 compression5; /* compression parameter 4 */
UINT32 compression6; /* compression parameter 4 */
UINT32 nheaders; /* total number of headers */
UINT32 nfast; /* number of pixels in one line */
UINT32 nslow; /* number of lines in image */
UINT32 depth; /* number of bytes per pixel */
UINT32 record_length; /* number of pixels between
succesive rows */
UINT32 signif_bits; /* true depth of data, in bits */
UINT32 data_type; /* (signed,unsigned,float...) */
UINT32 saturated_value; /* value marks pixel as saturated */
UINT32 sequence; /* TRUE or FALSE */
UINT32 nimages; /* total number of images - size of
each is nfast*(nslow/nimages) */
UINT32 origin; /* corner of origin */
UINT32 orientation; /* direction of fast axis */
UINT32 view_direction; /* direction to view frame */
UINT32 overflow_location;/* FOLLOWING_HEADER, FOLLOWING_DATA */
UINT32 over_8_bits; /* # of pixels with counts 255 */
UINT32 over_16_bits; /* # of pixels with count 65535 */
UINT32 multiplexed; /* multiplex flag */
UINT32 nfastimages; /* # of images in fast direction */
UINT32 nslowimages; /* # of images in slow direction */
UINT32 background_applied; /* flags correction has been applied -
hold magic number ? */
UINT32 bias_applied; /* flags correction has been applied -
hold magic number ? */
UINT32 flatfield_applied; /* flags correction has been applied -
hold magic number ? */
UINT32 distortion_applied; /* flags correction has been applied -
hold magic number ? */
UINT32 original_header_type; /* Header/frame type from file
that frame is read from */
UINT32 file_saved; /* Flag that file has been saved,
should be zeroed if modified */
char reserve1[(64-40)*sizeof(INT32)-16];
/* Data statistics (128) */
UINT32 total_counts[2]; /* 64 bit integer range = 1.85E19*/
UINT32 special_counts1[2];
UINT32 special_counts2[2];
UINT32 min;
UINT32 max;
UINT32 mean;
UINT32 rms;
UINT32 p10;
UINT32 p90;
UINT32 stats_uptodate;
UINT32 pixel_noise[MAXIMAGES]; /* 1000*base noise value (ADUs) */
char reserve2[(32-13-MAXIMAGES)*sizeof(INT32)];
/* More statistics (256) */
UINT16 percentile[128];
/* Goniostat parameters (128 bytes) */
INT32 xtal_to_detector; /* 1000*distance in millimeters */
INT32 beam_x; /* 1000*x beam position (pixels) */
INT32 beam_y; /* 1000*y beam position (pixels) */
INT32 integration_time; /* integration time in milliseconds */
INT32 exposure_time; /* exposure time in milliseconds */
INT32 readout_time; /* readout time in milliseconds */
INT32 nreads; /* number of readouts to get this image */
INT32 start_twotheta; /* 1000*two_theta angle */
INT32 start_omega; /* 1000*omega angle */
INT32 start_chi; /* 1000*chi angle */
INT32 start_kappa; /* 1000*kappa angle */
INT32 start_phi; /* 1000*phi angle */
INT32 start_delta; /* 1000*delta angle */
INT32 start_gamma; /* 1000*gamma angle */
INT32 start_xtal_to_detector; /* 1000*distance in mm (dist in um)*/
INT32 end_twotheta; /* 1000*two_theta angle */
INT32 end_omega; /* 1000*omega angle */
INT32 end_chi; /* 1000*chi angle */
INT32 end_kappa; /* 1000*kappa angle */
INT32 end_phi; /* 1000*phi angle */
INT32 end_delta; /* 1000*delta angle */
INT32 end_gamma; /* 1000*gamma angle */
INT32 end_xtal_to_detector; /* 1000*distance in mm (dist in um)*/
INT32 rotation_axis; /* active rotation axis */
INT32 rotation_range; /* 1000*rotation angle */
INT32 detector_rotx; /* 1000*rotation of detector around X */
INT32 detector_roty; /* 1000*rotation of detector around Y */
INT32 detector_rotz; /* 1000*rotation of detector around Z */
char reserve3[(32-28)*sizeof(INT32)];
/* Detector parameters (128 bytes) */
INT32 detector_type; /* detector type */
INT32 pixelsize_x; /* pixel size (nanometers) */
INT32 pixelsize_y; /* pixel size (nanometers) */
INT32 mean_bias; /* 1000*mean bias value */
INT32 photons_per_100adu; /* photons / 100 ADUs */
INT32 measured_bias[MAXIMAGES]; /* 1000*mean bias value for each image*/
INT32 measured_temperature[MAXIMAGES]; /* Temperature of each
detector in milliKelvins */
INT32 measured_pressure[MAXIMAGES]; /* Pressure of each chamber
in microTorr */
/* Retired reserve4 when MAXIMAGES set to 9 from 16 and
two fields removed, and temp and pressure added
char reserve4[(32-(5+3*MAXIMAGES))*sizeof(INT32)]
*/
/* X-ray source and optics parameters (128 bytes) */
/* X-ray source parameters (8*4 bytes) */
INT32 source_type; /* (code) - target, synch. etc */
INT32 source_dx; /* Optics param. - (size microns) */
INT32 source_dy; /* Optics param. - (size microns) */
INT32 source_wavelength; /* wavelength (femtoMeters) */
INT32 source_power; /* (Watts) */
INT32 source_voltage; /* (Volts) */
INT32 source_current; /* (microAmps) */
INT32 source_bias; /* (Volts) */
INT32 source_polarization_x; /* () */
INT32 source_polarization_y; /* () */
char reserve_source[4*sizeof(INT32)];
/* X-ray optics_parameters (8*4 bytes) */
INT32 optics_type; /* Optics type (code)*/
INT32 optics_dx; /* Optics param. - (size microns) */
INT32 optics_dy; /* Optics param. - (size microns) */
INT32 optics_wavelength; /* Optics param. - (size microns) */
INT32 optics_dispersion; /* Optics param. - (*10E6) */
INT32 optics_crossfire_x; /* Optics param. - (microRadians) */
INT32 optics_crossfire_y; /* Optics param. - (microRadians) */
INT32 optics_angle; /* Optics param. - (monoch.
2theta - microradians) */
INT32 optics_polarization_x; /* () */
INT32 optics_polarization_y; /* () */
char reserve_optics[4*sizeof(INT32)];
char reserve5[((32-28)*sizeof(INT32))];
/* File parameters (1024 bytes) */
char filetitle[128]; /* Title */
char filepath[128]; /* path name for data file */
char filename[64]; /* name of data file */
char acquire_timestamp[32]; /* date and time of acquisition */
char header_timestamp[32]; /* date and time of header update */
char save_timestamp[32]; /* date and time file saved */
char file_comments[512]; /* comments, use as desired */
char reserve6[1024-(128+128+64+(3*32)+512)];
/* Dataset parameters (512 bytes) */
char dataset_comments[512]; /* comments, used as desired */
/* pad out to 3072 bytes */
char pad[3072-(256+128+256+(3*128)+1024+512)];
} frame_header;
"""
class marheaderreader:
"""
Class to sit and read a series of images (makes format etc only once)
"""
def __init__(self):
"""
Initialise internal stuff
"""
self.names , self.fmt = make_format(cdefinition)
def get_header(self,filename):
"""
Reads a header from file filename
"""
h=read_mar_header(filename)
dict = interpret_header(h,self.fmt,self.names)
# Append ESRF formatted stuff
items = self.readesrfstring(dict["dataset_comments[512]"])
for pair in items:
dict[pair[0]]=pair[1]
items = self.readesrfstring(dict["file_comments[512]"])
for pair in items:
dict[pair[0]]=pair[1]
dict["pixelsize_x_mm"]= str(float(dict["pixelsize_x"])/1e6)
dict["pixelsize_y_mm"]= str(float(dict["pixelsize_y"])/1e6)
dict["integration_time_sec"]= str(float(dict["integration_time"])/1e3)
dict["beam_y_mm"]= str(float(dict["pixelsize_y_mm"])*
float(dict["beam_y"])/1000.)
dict["beam_x_mm"]= str(float(dict["pixelsize_x_mm"])*
float(dict["beam_x"])/1000.)
return dict
def readesrfstring(self,s):
"""
Interpret the so called "esrf format" header lines
which are in comment sections
"""
s=s.replace("\000","")
items = filter(None, [len(x)>1 and x or None for x in [
item.split("=") for item in s.split(";")]])
return items
if __name__=="__main__":
"""
Make a little program to process files
"""
import sys
print "Starting"
names,fmt = make_format(cdefinition)
print "Names and format made"
h = read_mar_header(sys.argv[1])
print "Read header, interpreting"
d = interpret_header(h,fmt,names)
printed = {}
for name in names:
if printed.has_key(name):
continue
print name,":",d[name]
printed[name]=1
@}
\subsection{Writing out cif files for fit2d/xmas}
A script which is supposed to pick up some header information from the mar images,
some more infomation from the user and the create cif files.
This relies on a "template" cif file to get it started (avoids me programming everything).
@o xmas/xmasheaders.py -i -t
@{#!/usr/bin/env python
import pycbf
# Some cbf helper functions - obj would be a cbf_handle_struct object
def writewavelength(obj,wavelength):
obj.set_wavelength(float(wavelength))
def writecellpar(obj,cifname,value):
obj.find_category("cell")
obj.find_column(cifname)
obj.set_value(value)
def writecell(obj,cell):
"""
call with cell = (a,b,c,alpha,beta,gamma)
"""
obj.find_category("cell")
obj.find_column("length_a")
obj.set_value(str(cell[0]))
obj.find_column("length_b")
obj.set_value(str(cell[1]))
obj.find_column("length_c")
obj.set_value(str(cell[2]))
obj.find_column("angle_alpha")
obj.set_value(str(cell[3]))
obj.find_column("angle_beta")
obj.set_value(str(cell[4]))
obj.find_column("angle_gamma")
obj.set_value(str(cell[5]))
def writeUB(obj,ub):
"""
call with ub that can be indexed ub[i][j]
"""
obj.find_category("diffrn_orient_matrix")
for i in (1,2,3):
for j in (1,2,3):
obj.find_column("UB[%d][%d]"%(i,j))
obj.set_value(str(ub[i-1][j-1]))
def writedistance(obj,distance):
obj.set_axis_setting("DETECTOR_Z",float(distance),0.)
def writebeam_x_mm(obj,cen):
obj.set_axis_setting("DETECTOR_X",float(cen),0.)
def writebeam_y_mm(obj,cen):
obj.set_axis_setting("DETECTOR_Y",float(cen),0.)
def writeSPECcmd(obj,s):
obj.find_category("diffrn_measurement")
obj.find_column("details")
obj.set_value(s)
def writeSPECscan(obj,s):
obj.find_category("diffrn_scan")
obj.find_column("id")
obj.set_value("SCAN%s"%(s))
obj.find_category("diffrn_scan_axis")
obj.find_column("scan_id")
obj.rewind_row()
for i in range(obj.count_rows()):
obj.select_row(i)
obj.set_value("SCAN%s"%(s))
obj.find_category("diffrn_scan_frame")
obj.find_column("scan_id")
obj.rewind_row()
obj.set_value("SCAN%s"%(s))
def writepixelsize_y_mm(obj,s):
"""
Units are mm for cif
"""
# element number = assume this is first and only detector
element_number = 0
# axis number = faster or slower... ? Need to check precedence ideally...
obj.find_category("array_structure_list")
obj.find_column("axis_set_id")
obj.find_row("ELEMENT_Y")
obj.find_column("precedence")
axis_number = obj.get_integervalue()
obj.set_pixel_size(element_number, axis_number, float(s) )
obj.find_category("array_structure_list_axis")
obj.find_column("axis_id")
obj.find_row("ELEMENT_Y")
obj.find_column("displacement")
obj.set_doublevalue("%.6g",float(s)/2.0)
obj.find_column("displacement_increment")
obj.set_doublevalue("%.6g",float(s))
def writepixelsize_x_mm(obj,s):
# element number = assume this is first and only detector
element_number = 0
# axis number = faster or slower... ? Need to check precedence ideally...
obj.find_category("array_structure_list")
obj.find_column("axis_set_id")
obj.find_row("ELEMENT_X")
obj.find_column("precedence")
axis_number = obj.get_integervalue()
obj.set_pixel_size(element_number, axis_number, float(s) )
obj.find_category("array_structure_list_axis")
obj.find_column("axis_id")
obj.find_row("ELEMENT_X")
obj.find_column("displacement")
obj.set_doublevalue("%.6g",float(s)/2.0)
obj.find_column("displacement_increment")
obj.set_doublevalue("%.6g",float(s))
def writeintegrationtime(obj,s):
obj.find_category("diffrn_scan_frame")
obj.find_column("integration_time")
obj.set_value(str(s).replace("\000",""))
def writenfast(obj,s):
obj.find_category("array_structure_list")
obj.find_column("index")
obj.find_row("1")
obj.find_column("dimension")
obj.set_value(str(s))
def writenslow(obj,s):
obj.find_category("array_structure_list")
obj.find_column("index")
obj.find_row("2")
obj.find_column("dimension")
obj.set_value(str(s))
functiondict = {
"lambda" : writewavelength,
"beam_x_mm" : writebeam_x_mm,
"beam_y_mm" : writebeam_y_mm,
"distance" : writedistance,
"UB" : writeUB,
"cell" : writecell,
"cmd" : writeSPECcmd,
"scan" : writeSPECscan,
"nfast" : writenfast,
"nslow" : writenslow,
"pixelsize_y_mm" : writepixelsize_y_mm,
"pixelsize_x_mm" : writepixelsize_x_mm,
"integration_time_sec" : writeintegrationtime,
"tth" : lambda obj,value : obj.set_axis_setting(
"DETECTOR_TWO_THETA_VERTICAL",float(value),0.),
"chi" : lambda obj,value : obj.set_axis_setting(
"GONIOMETER_CHI",float(value),0.),
"th" : lambda obj,value : obj.set_axis_setting(
"GONIOMETER_THETA",float(value),0.),
"phi" : lambda obj,value : obj.set_axis_setting(
"GONIOMETER_PHI",float(value),0.),
"lc_a" : lambda obj,value : writecellpar(obj,"length_a",value),
"lc_b" : lambda obj,value : writecellpar(obj,"length_b",value),
"lc_c" : lambda obj,value : writecellpar(obj,"length_c",value),
"lc_al" : lambda obj,value : writecellpar(obj,"angle_alpha",value),
"lc_be" : lambda obj,value : writecellpar(obj,"angle_beta",value),
"lc_ga" : lambda obj,value : writecellpar(obj,"angle_gamma",value)
}
"""
#
# Not implementing these for now
lc_ra
lc_rc 0.4742
lc_rb 1.16
energy 13
cp_phi -180
alpha 7.3716
lc_ral 90
cp_tth -180
lc_rga 90
beta 17.572
omega -2.185
h 0.21539
k 0.01957
l 5.9763
cp_chi -180
lc_rbe 90
cp_th -180
azimuth 0
"""
# Finally a class for creating header files.
# It reads a template and then offers a processfile command
# for running over a file series
class cifheader:
def __init__(self,templatefile):
self.cbf=pycbf.cbf_handle_struct()
self.cbf.read_template(templatefile)
from readmarheader import marheaderreader
self.marheaderreader = marheaderreader()
def processfile(self,filename, outfile=None,
format="mccd",
**kwds):
outfile=outfile.replace(format,"cif")
if format == "mccd":
items = self.marheaderreader.get_header(filename)
if format == "bruker":
pass
if format == "edf":
pass
self.items=items
# Take the image header items as default
self.updateitems(items)
# Allow them to be overridden
self.updateitems(kwds)
# Write the file
self.writefile(outfile)
def writefile(self,filename):
self.cbf.write_file(filename,pycbf.CIF,pycbf.MIME_HEADERS,
pycbf.ENC_BASE64)
def updateitems(self,dict):
names = dict.keys()
for name in names:
value = dict[name]
# use a dictionary of functions
if functiondict.has_key(name):
# print "calling",functiondict[name],value
apply(functiondict[name],(self.cbf,value))
else:
#print "ignoring",name,value
pass
if __name__=="__main__":
import sys
obj=cifheader("xmas_cif_template.cif")
ub = [[0.11, 0.12, 0.13] , [0.21, 0.22, 0.23], [0.31, 0.32, 0.33]]
for filename in sys.argv[1:]:
fileout = filename.split("/")[-1]
obj.processfile(filename, outfile=fileout, UB=ub, distance=123.456)
@}
\subsection{A template cif file for the xmas beamline}
This was sort of copied and modified from an example file. It has NOT been checked.
Hopefully the four circle geometry at least vaguely matches what is at the beamline.
@o xmas/xmas_cif_template.cif -i -t
@{
###CBF: VERSION 0.6
# CBF file written by cbflib v0.6
data_image_1
loop_
_diffrn.id
_diffrn.crystal_id
DS1 DIFFRN_CRYSTAL_ID
loop_
_cell.length_a 5.959(1)
_cell.length_b 14.956(1)
_cell.length_c 19.737(3)
_cell.angle_alpha 90
_cell.angle_beta 90
_cell.angle_gamma 90
loop_
_diffrn_orient_matrix.id 'DS1'
_diffrn_orient_matrix.type
; reciprocal axis matrix, multiplies hkl vector to generate
diffractometer xyz vector and diffractometer angles
;
_diffrn_orient_matrix.UB[1][1] 0.11
_diffrn_orient_matrix.UB[1][2] 0.12
_diffrn_orient_matrix.UB[1][3] 0.13
_diffrn_orient_matrix.UB[2][1] 0.21
_diffrn_orient_matrix.UB[2][2] 0.22
_diffrn_orient_matrix.UB[2][3] 0.23
_diffrn_orient_matrix.UB[3][1] 0.31
_diffrn_orient_matrix.UB[3][2] 0.32
_diffrn_orient_matrix.UB[3][3] 0.33
loop_
_diffrn_source.diffrn_id
_diffrn_source.source
_diffrn_source.current
_diffrn_source.type
DS1 synchrotron 200.0 'XMAS beamline bm28 ESRF'
loop_
_diffrn_radiation.diffrn_id
_diffrn_radiation.wavelength_id
_diffrn_radiation.probe
_diffrn_radiation.monochromator
_diffrn_radiation.polarizn_source_ratio
_diffrn_radiation.polarizn_source_norm
_diffrn_radiation.div_x_source
_diffrn_radiation.div_y_source
_diffrn_radiation.div_x_y_source
_diffrn_radiation.collimation
DS1 WAVELENGTH1 x-ray 'Si 111' 0.8 0.0 0.08 0.01 0.00 '0.20 mm x 0.20 mm'
loop_
_diffrn_radiation_wavelength.id
_diffrn_radiation_wavelength.wavelength
_diffrn_radiation_wavelength.wt
WAVELENGTH1 1.73862 1.0
loop_
_diffrn_detector.diffrn_id
_diffrn_detector.id
_diffrn_detector.type
_diffrn_detector.details
_diffrn_detector.number_of_axes
DS1 MAR 'MAR XMAS' 'slow mode' 5
loop_
_diffrn_detector_axis.detector_id
_diffrn_detector_axis.axis_id
MAR DETECTOR_TWO_THETA_VERTICAL
MAR DETECTOR_X
MAR DETECTOR_Y
MAR DETECTOR_Z
MAR DETECTOR_PITCH
loop_
_diffrn_detector_element.id
_diffrn_detector_element.detector_id
ELEMENT1 MAR
loop_
_diffrn_data_frame.id
_diffrn_data_frame.detector_element_id
_diffrn_data_frame.array_id
_diffrn_data_frame.binary_id
FRAME1 ELEMENT1 ARRAY1 1
loop_
_diffrn_measurement.diffrn_id
_diffrn_measurement.id
_diffrn_measurement.number_of_axes
_diffrn_measurement.method
_diffrn_measurement.details
DS1 GONIOMETER 3 rotation
'i0=1.000 i1=1.000 i2=1.000 ib=1.000 beamstop=20 mm 0% attenuation'
loop_
_diffrn_measurement_axis.measurement_id
_diffrn_measurement_axis.axis_id
GONIOMETER GONIOMETER_PHI
GONIOMETER GONIOMETER_CHI
GONIOMETER GONIOMETER_THETA
loop_
_diffrn_scan.id
_diffrn_scan.frame_id_start
_diffrn_scan.frame_id_end
_diffrn_scan.frames
SCAN1 FRAME1 FRAME1 1
loop_
_diffrn_scan_axis.scan_id
_diffrn_scan_axis.axis_id
_diffrn_scan_axis.angle_start
_diffrn_scan_axis.angle_range
_diffrn_scan_axis.angle_increment
_diffrn_scan_axis.displacement_start
_diffrn_scan_axis.displacement_range
_diffrn_scan_axis.displacement_increment
SCAN1 GONIOMETER_THETA 0.0 0.0 0.0 0.0 0.0 0.0
SCAN1 GONIOMETER_CHI 0.0 0.0 0.0 0.0 0.0 0.0
SCAN1 GONIOMETER_PHI 185 1 1 0.0 0.0 0.0
SCAN1 DETECTOR_TWO_THETA_VERTICAL 0.0 0.0 0.0 0.0 0.0 0.0
SCAN1 DETECTOR_Z 0.0 0.0 0.0 103.750 0 0
SCAN1 DETECTOR_Y 0.0 0.0 0.0 0.0 0.0 0.0
SCAN1 DETECTOR_X 0.0 0.0 0.0 0.0 0.0 0.0
SCAN1 DETECTOR_PITCH 0.0 0.0 0.0 0.0 0.0 0.0
loop_
_diffrn_scan_frame.frame_id
_diffrn_scan_frame.frame_number
_diffrn_scan_frame.integration_time
_diffrn_scan_frame.scan_id
_diffrn_scan_frame.date
FRAME1 1 360 SCAN1 1997-12-04T10:23:48
loop_
_diffrn_scan_frame_axis.frame_id
_diffrn_scan_frame_axis.axis_id
_diffrn_scan_frame_axis.angle
_diffrn_scan_frame_axis.displacement
FRAME1 GONIOMETER_THETA 0.0 0.0
FRAME1 GONIOMETER_CHI 0.0 0.0
FRAME1 GONIOMETER_PHI 185 0.0
FRAME1 DETECTOR_TWO_THETA_VERTICAL 185 0.0
FRAME1 DETECTOR_Z 0.0 103.750
FRAME1 DETECTOR_Y 0.0 0.0
FRAME1 DETECTOR_X 0.0 0.0
FRAME1 DETECTOR_PITCH 0.0 0.0
loop_
_axis.id
_axis.type
_axis.equipment
_axis.depends_on
_axis.vector[1]
_axis.vector[2]
_axis.vector[3]
_axis.offset[1]
_axis.offset[2]
_axis.offset[3]
GONIOMETER_THETA rotation goniometer . 1 0 0 . . .
GONIOMETER_CHI rotation goniometer GONIOMETER_THETA 0 0 1 . . .
GONIOMETER_PHI rotation goniometer GONIOMETER_PHI 1 0 0 . . .
SOURCE general source . 0 0 1 . . .
GRAVITY general gravity . 0 -1 0 . . .
DETECTOR_TWO_THETA_VERTICAL rotation goniometer . 1 0 0 . . .
DETECTOR_Z translation detector DETECTOR_TWO_THETA_VERTICAL 0 0 -1 0 0 0
DETECTOR_Y translation detector DETECTOR_Z 0 1 0 0 0 0
DETECTOR_X translation detector DETECTOR_Y 1 0 0 0 0 0
DETECTOR_PITCH rotation detector DETECTOR_X 0 1 0 0 0 0
ELEMENT_X translation detector DETECTOR_PITCH 1 0 0 -94.0032 94.0032 0
ELEMENT_Y translation detector ELEMENT_X 0 1 0 0 0 0
loop_
_array_structure_list.array_id
_array_structure_list.index
_array_structure_list.dimension
_array_structure_list.precedence
_array_structure_list.direction
_array_structure_list.axis_set_id
ARRAY1 1 2049 1 increasing ELEMENT_X
ARRAY1 2 2049 2 increasing ELEMENT_Y
loop_
_array_structure_list_axis.axis_set_id
_array_structure_list_axis.axis_id
_array_structure_list_axis.displacement
_array_structure_list_axis.displacement_increment
ELEMENT_X ELEMENT_X 0.0408 0.0816
ELEMENT_Y ELEMENT_Y -0.0408 -0.0816
loop_
_array_intensities.array_id
_array_intensities.binary_id
_array_intensities.linearity
_array_intensities.gain
_array_intensities.gain_esd
_array_intensities.overload
_array_intensities.undefined_value
ARRAY1 1 linear 0.30 0.03 65000 0
loop_
_array_structure.id
_array_structure.encoding_type
_array_structure.compression_type
_array_structure.byte_order
ARRAY1 "signed 32-bit integer" packed little_endian
@}
\end{document}
|