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 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681
|
<HTML>
<HEAD>
<TITLE>cif_img.dic v1.5_DRAFT</TITLE>
</HEAD>
<body bgcolor="#FAFAFF" text="#0808A0"
BACKGROUND="../html_graphics/cbflibbackground.jpg">
<font color="#0808A0">
<H1>
# <a href="http://www.iucr.org/iucr-top/welcome.html">
<img alt="[IUCr Home Page]" src="../html_graphics/iucrhome.jpg" ALIGN=MIDDLE></a>
<a href="http://www.iucr.org/iucr-top/cif/home.html">
<img alt="[CIF Home Page]" src="../html_graphics/cifhome.jpg" ALIGN=MIDDLE></a>
<a href="cbf_definition_rev.html"><IMG SRC="../html_graphics/CBFbutton.jpg"
ALT="[CBF/imgCIF]" ALIGN=MIDDLE></a>
<a href="CBFlib.html"><IMG SRC="../html_graphics/cbflibbutton.jpg"
ALT="[CBFlib]" ALIGN=MIDDLE></a> #
</H1>
<H1 ALIGN=CENTER>
# <IMG SRC="../html_graphics/CBFbig.jpg" ALIGN=MIDDLE ALT="imgCIF/CBF"> #
</H1>
<H1 ALIGN=CENTER># Extensions Dictionary #</H1>
</font><font color="#000000">
<PRE>
##############################################################################
# #
# Image CIF Dictionary (imgCIF) #
# and Crystallographic Binary File Dictionary (CBF) #
# Extending the Macromolecular CIF Dictionary (mmCIF) #
# #
# Version 1.5.3 #
# of 2007-07-08 #
# ################################################################### #
# # *** WARNING *** THIS IS A DRAFT FOR DISCUSSSION *** WARNING *** # #
# # SUBJECT TO CHANGE WITHOUT NOTICE # #
# # SEND COMMENTS TO imgcif-l@iucr.org CITING THE VERSION # #
# ################################################################### #
# This draft edited by H. J. Bernstein #
# #
# by Andrew P. Hammersley, Herbert J. Bernstein and John D. Westbrook #
# #
# This dictionary was adapted from format discussed at the imgCIF Workshop, #
# held at BNL Oct 1997 and the Crystallographic Binary File Format Draft #
# Proposal by Andrew Hammersley. The first DDL 2.1 Version was created by #
# John Westbrook. This version was drafted by Herbert J. Bernstein and #
# incorporates comments by I. David Brown, John Westbrook, Brian McMahon, #
# Bob Sweet, Paul Ellis, Harry Powell, Wilfred Li, Gotzon Madariaga, #
# Frances C. Bernstein, Chris Nielsen, Nicola Ashcroft and others. #
##############################################################################
data_cif_img.dic
_dictionary.title cif_img.dic
_dictionary.version 1.5.3
_dictionary.datablock_id cif_img.dic
##############################################################################
# CONTENTS
#
# <a href="#CATEGORY_GROUP_LIST">CATEGORY_GROUP_LIST</a>
# <a href="#SUB_CATEGORY">SUB_CATEGORY</a>
#
# category <a href="#ARRAY_DATA">ARRAY_DATA</a>
#
# <a href="#_array_data.array_id" >_array_data.array_id</a>
# <a href="#_array_data.binary_id" >_array_data.binary_id</a>
# <a href="#_array_data.data" >_array_data.data</a>
# <a href="#_array_data.header_contents" >_array_data.header_contents</a>
# <a href="#_array_data.header_convention" >_array_data.header_convention</a>
#
# category <a href="#ARRAY_ELEMENT_SIZE">ARRAY_ELEMENT_SIZE</a>
#
# <a href="#_array_element_size.array_id" >_array_element_size.array_id</a>
# <a href="#_array_element_size.index" >_array_element_size.index</a>
# <a href="#_array_element_size.size" >_array_element_size.size</a>
#
# category <a href="#ARRAY_INTENSITIES">ARRAY_INTENSITIES</a>
#
# <a href="#_array_intensities.array_id" >_array_intensities.array_id</a>
# <a href="#_array_intensities.binary_id" >_array_intensities.binary_id</a>
# <a href="#_array_intensities.gain" >_array_intensities.gain</a>
# <a href="#_array_intensities.gain_esd" >_array_intensities.gain_esd</a>
# <a href="#_array_intensities.linearity" >_array_intensities.linearity</a>
# <a href="#_array_intensities.offset" >_array_intensities.offset</a>
# <a href="#_array_intensities.scaling" >_array_intensities.scaling</a>
# <a href="#_array_intensities.overload" >_array_intensities.overload</a>
# <a href="#_array_intensities.undefined_value" >_array_intensities.undefined_value</a>
# <a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>
# <a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a>
# <a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>
#
# category <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a>
#
# <a href="#_array_structure.byte_order" >_array_structure.byte_order</a>
# <a href="#_array_structure.compression_type" >_array_structure.compression_type</a>
# <a href="#_array_structure.compression_type_flag" >_array_structure.compression_type_flag</a>
# <a href="#_array_structure.encoding_type" >_array_structure.encoding_type</a>
# <a href="#_array_structure.id" >_array_structure.id</a>
#
# category <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a>
#
# <a href="#_array_structure_list.axis_set_id" >_array_structure_list.axis_set_id</a>
# <a href="#_array_structure_list.array_id" >_array_structure_list.array_id</a>
# <a href="#_array_structure_list.dimension" >_array_structure_list.dimension</a>
# <a href="#_array_structure_list.direction" >_array_structure_list.direction</a>
# <a href="#_array_structure_list.index" >_array_structure_list.index</a>
# <a href="#_array_structure_list.precedence" >_array_structure_list.precedence</a>
#
# category <a href="#ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a>
#
# <a href="#_array_structure_list_axis.axis_id" >_array_structure_list_axis.axis_id</a>
# <a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>
# <a href="#_array_structure_list_axis.angle" >_array_structure_list_axis.angle</a>
# <a href="#_array_structure_list_axis.angle_increment" >_array_structure_list_axis.angle_increment</a>
# <a href="#_array_structure_list_axis.displacement" >_array_structure_list_axis.displacement</a>
# <a href="#_array_structure_list_axis.fract_displacement" >_array_structure_list_axis.fract_displacement</a>
# <a href="#_array_structure_list_axis.displacement_increment" >_array_structure_list_axis.displacement_increment</a>
# <a href="#_array_structure_list_axis.fract_displacement_increment" >_array_structure_list_axis.fract_displacement_increment</a>
# <a href="#_array_structure_list_axis.angular_pitch" >_array_structure_list_axis.angular_pitch</a>
# <a href="#_array_structure_list_axis.radial_pitch" >_array_structure_list_axis.radial_pitch</a>
# <a href="#_array_structure_list_axis.reference_angle" >_array_structure_list_axis.reference_angle</a>
# <a href="#_array_structure_list_axis.reference_displacement" >_array_structure_list_axis.reference_displacement</a>
#
# category <a href="#AXIS">AXIS</a>
#
# <a href="#_axis.depends_on" >_axis.depends_on</a>
# <a href="#_axis.equipment" >_axis.equipment</a>
# <a href="#_axis.id" >_axis.id</a></a>
# <a href="#_axis.offset[1]" >_axis.offset[1]</a>
# <a href="#_axis.offset[2]" >_axis.offset[2]</a>
# <a href="#_axis.offset[3]" >_axis.offset[3]</a>
# <a href="#_axis.type" >_axis.type</a>
# <a href="#_axis.system" >_axis.system</a>
# <a href="#_axis.vector[1]" >_axis.vector[1]</a>
# <a href="#_axis.vector[2]" >_axis.vector[2]</a>
# <a href="#_axis.vector[3]" >_axis.vector[3]</a>
#
# category <a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a>
#
# <a href="#_diffrn_data_frame.array_id" >_diffrn_data_frame.array_id</a>
# <a href="#_diffrn_data_frame.binary_id" >_diffrn_data_frame.binary_id</a>
# <a href="#_diffrn_data_frame.center_fast" >_diffrn_data_frame.center_fast</a>
# <a href="#_diffrn_data_frame.center_slow" >_diffrn_data_frame.center_slow</a>
# <a href="#_diffrn_data_frame.center_units" >_diffrn_data_frame.center_units</a>
# <a href="#_diffrn_data_frame.detector_element_id" >_diffrn_data_frame.detector_element_id</a>
# <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>
# <a href="#_diffrn_data_frame.details">_diffrn_data_frame.details</a>
#
# category <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a>
#
# <a href="#_diffrn_detector.details" >_diffrn_detector.details</a>
# <a href="#_diffrn_detector.detector" >_diffrn_detector.detector</a>
# <a href="#_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a>
# <a href="#_diffrn_detector.dtime" >_diffrn_detector.dtime</a>
# <a href="#_diffrn_detector.id" >_diffrn_detector.id</a>
# <a href="#_diffrn_detector.number_of_axes" >_diffrn_detector.number_of_axes</a>
# <a href="#_diffrn_detector.type" >_diffrn_detector.type</a>
#
# category <a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a>
#
# <a href="#_diffrn_detector_axis.axis_id" >_diffrn_detector_axis.axis_id</a>
# <a href="#_diffrn_detector_axis.detector_id" >_diffrn_detector_axis.detector_id</a>
#
# category <a href="#DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a>
#
# <a href="#_diffrn_detector_element.id" >_diffrn_detector_element.id</a>
# <a href="#_diffrn_detector_element.detector_id" >_diffrn_detector_element.detector_id</a>
# <a href="#_diffrn_detector_element.reference_center_fast" >_diffrn_detector_element.reference_center_fast</a>
# <a href="#_diffrn_detector_element.reference_center_slow" >_diffrn_detector_element.reference_center_slow</a>
# <a href="#_diffrn_detector_element.reference_center_units" >_diffrn_detector_element.reference_center_units</a>
#
# category <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a>
#
# <a href="#_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a>
# <a href="#_diffrn_measurement.details" >_diffrn_measurement.details</a>
# <a href="#_diffrn_measurement.device" >_diffrn_measurement.device</a>
# <a href="#_diffrn_measurement.device_details" >_diffrn_measurement.device_details</a>
# <a href="#_diffrn_measurement.device_type" >_diffrn_measurement.device_type</a>
# <a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a>
# <a href="#_diffrn_measurement.method" >_diffrn_measurement.method</a>
# <a href="#_diffrn_measurement.number_of_axes" >_diffrn_measurement.number_of_axes</a>
# <a href="#_diffrn_measurement.sample_detector_distance" >_diffrn_measurement.sample_detector_distance</a>
# <a href="#_diffrn_measurement.sample_detector_voffset" >_diffrn_measurement.sample_detector_voffset</a>
# <a href="#_diffrn_measurement.specimen_support" >_diffrn_measurement.specimen_support</a>
#
# category <a href="#DIFFRN_MEASUREMENT_AXIS">DIFFRN_MEASUREMENT_AXIS</a>
#
# <a href="#_diffrn_measurement_axis.id" >_diffrn_measurement_axis.axis_id</a>
# <a href="#_diffrn_measurement_axis.measurement_device" >_diffrn_measurement_axis.measurement_device</a>
# <a href="#_diffrn_measurement_axis.measurement_id" >_diffrn_measurement_axis.measurement_id</a>
#
# category <a href="#DIFFRN_RADIATION">DIFFRN_RADIATION</a>
#
# <a href="#_diffrn_radiation.collimation">_diffrn_radiation.collimation</a>
# <a href="#_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a>
# <a href="#_diffrn_radiation.div_x_source" >_diffrn_radiation.div_x_source</a>
# <a href="#_diffrn_radiation.div_y_source" >_diffrn_radiation.div_y_source</a>
# <a href="#_diffrn_radiation.div_x_y_source" >_diffrn_radiation.div_x_y_source</a>
# <a href="#_diffrn_radiation.filter_edge">_diffrn_radiation.filter_edge</a>'
# <a href="#_diffrn_radiation.inhomogeneity">_diffrn_radiation.inhomogeneity</a>
# <a href="#_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a>
# <a href="#_diffrn_radiation.polarisn_norm">_diffrn_radiation.polarisn_norm</a>
# <a href="#_diffrn_radiation.polarisn_ratio">_diffrn_radiation.polarisn_ratio</a>
# <a href="#_diffrn_radiation.polarizn_source_norm" >_diffrn_radiation.polarizn_source_norm</a>
# <a href="#_diffrn_radiation.polarizn_source_ratio" >_diffrn_radiation.polarizn_source_ratio</a>
# <a href="#_diffrn_radiation.probe">_diffrn_radiation.probe</a>
# <a href="#_diffrn_radiation.type">_diffrn_radiation.type</a>
# <a href="#_diffrn_radiation.xray_symbol">_diffrn_radiation.xray_symbol</a>
# <a href="#_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a>
#
# category <a href="#DIFFRN_REFLN">DIFFRN_REFLN</a>
#
# <a href="#_diffrn_refln.frame_id" >_diffrn_refln.frame_id</a>
#
# category <a href="#DIFFRN_SCAN">DIFFRN_SCAN</a>
#
# <a href="#_diffrn_scan.id" >_diffrn_scan.id</a>
# <a href="#_diffrn_scan.date_end" >_diffrn_scan.date_end</a>
# <a href="#_diffrn_scan.date_start" >_diffrn_scan.date_start</a>
# <a href="#_diffrn_scan.integration_time" >_diffrn_scan.integration_time</a>
# <a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>
# <a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>
# <a href="#_diffrn_scan.frames" >_diffrn_scan.frames</a>
#
# category <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a>
#
# <a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>
# <a href="#_diffrn_scan_axis.angle_start" >_diffrn_scan_axis.angle_start</a>
# <a href="#_diffrn_scan_axis.angle_range" >_diffrn_scan_axis.angle_range</a>
# <a href="#_diffrn_scan_axis.angle_increment" >_diffrn_scan_axis.angle_increment</a>
# <a href="#_diffrn_scan_axis.angle_rstrt_incr" >_diffrn_scan_axis.angle_rstrt_incr</a>
# <a href="#_diffrn_scan_axis.displacement_start" >_diffrn_scan_axis.displacement_start</a>
# <a href="#_diffrn_scan_axis.displacement_range" >_diffrn_scan_axis.displacement_range</a>
# <a href="#_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a>
# <a href="#_diffrn_scan_axis.displacement_rstrt_incr" >_diffrn_scan_axis.displacement_rstrt_incr</a>
# <a href="#_diffrn_scan_axis.reference_angle" >_diffrn_scan_axis.reference_angle</a>
# <a href="#_diffrn_scan_axis.reference_displacement" >_diffrn_scan_axis.reference_displacement</a>
# <a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>
#
# category <a href="#DIFFRN_SCAN_FRAME">DIFFRN_SCAN_FRAME</a>
#
# <a href="#_diffrn_scan_frame.date" >_diffrn_scan_frame.date</a>
# <a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>
# <a href="#_diffrn_scan_frame.frame_number" >_diffrn_scan_frame.frame_number</a>
# <a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a>
# <a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>
#
# category <a href="#DIFFRN_SCAN_FRAME_AXIS">DIFFRN_SCAN_FRAME_AXIS</a>
#
# <a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>
# <a href="#_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a>
# <a href="#_diffrn_scan_frame_axis.angle_increment" >_diffrn_scan_frame_axis.angle_increment</a>
# <a href="#_diffrn_scan_frame_axis.angle_rstrt_incr" >_diffrn_scan_frame_axis.angle_rstrt_incr</a>
# <a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>
# <a href="#_diffrn_scan_frame_axis.displacement_increment" >_diffrn_scan_frame_axis.displacement_increment</a>
# <a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr" >_diffrn_scan_frame_axis.displacement_rstrt_incr</a>
# <a href="#_diffrn_scan_frame_axis.reference_angle" >_diffrn_scan_frame_axis.reference_angle</a>
# <a href="#_diffrn_scan_frame_axis.reference_displacement" >_diffrn_scan_frame_axis.reference_displacement</a>
# <a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>
#
# categor <a href="#MAP">MAP</a>
#
# <a href="#_map.details" >_map.details</a>
# <a href="#_map.diffrn_id" >_map.diffrn_id</a>
# <a href="#_map.entry_id" >_map.entry_id</a>
# <a name="#_map.id" >_map.id</a>
#
# categor <a href="#MAP_SEGMENT">MAP_SEGMENT</a>
#
# <a href="#_map_segment.array_id" >_map_segment.array_id</a>
# <a href="#_map_segment.binary_id" >_map_segment.binary_id</a>
# <a href="#_map_segment.mask_array_id" >_map_segment.mask_array_id</a>
# <a href="#_map_segment.mask_binary_id" >_map_segment.mask_binary_id</a>
# <a href="#_map_segment.id" >_map_segment.id</a>
# <a href="#_map_segment.map_id" >_map_segment.map_id</a>
# <a href="#_map_segment.details" >_map_segment.details</a>
#
# ***DEPRECATED*** data items
#
# <a href="#_diffrn_detector_axis.id" >_diffrn_detector_axis.id</a>
# <a href="#_diffrn_detector_element.center[1]" >_diffrn_detector_element.center[1]</a>
# <a href="#_diffrn_detector_element.center[2]" >_diffrn_detector_element.center[2]</a>
# <a href="#_diffrn_measurement_axis.id" >_diffrn_measurement_axis.id</a>
#
# ***DEPRECATED*** category <a href="#DIFFRN_FRAME_DATA">DIFFRN_FRAME_DATA</a>
#
# <a href="#_diffrn_frame_data.array_id" >_diffrn_frame_data.array_id</a>
# <a href="#_diffrn_frame_data.binary_id" >_diffrn_frame_data.binary_id</a>
# <a href="#_diffrn_frame_data.detector_element_id" >_diffrn_frame_data.detector_element_id</a>
# <a href="#_diffrn_frame_data.id" >_diffrn_frame_data.id</a>
# <a href="#_diffrn_frame_data.details">_diffrn_frame_data.details</a>
#
#
# <a href="#ITEM_TYPE_LIST">ITEM_TYPE_LIST</a>
# <a href="#ITEM_UNITS_LIST">ITEM_UNITS_LIST</a>
# <a href="#DICTIONARY_HISTORY">DICTIONARY_HISTORY</a>
#
##############################################################################
#########################
## <a name="CATEGORY_GROUP_LIST">CATEGORY_GROUP_LIST</a> ##
#########################
loop_
_category_group_list.id
_category_group_list.parent_id
_category_group_list.description
'inclusive_group' .
; Categories that belong to the dictionary extension.
;
'array_data_group'
'inclusive_group'
; Categories that describe array data.
;
'axis_group'
'inclusive_group'
; Categories that describe axes.
;
'diffrn_group'
'inclusive_group'
; Categories that describe details of the diffraction experiment.
;
##################
## <a name="SUB_CATEGORY">SUB_CATEGORY</a> ##
##################
loop_
_sub_category.id
_sub_category.description
'matrix'
; The collection of elements of a matrix.
;
'vector'
; The collection of elements of a vector.
;
##############
# <a name="ARRAY_DATA">ARRAY_DATA</a> #
##############
save_ARRAY_DATA
_category.description
; Data items in the <a href="#ARRAY_DATA">ARRAY_DATA</a> category are the containers for
the array data items described in the category <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a>.
It is recognized that the data in this category needs to be used in
two distinct ways. During a data collection the lack of ancillary
data and timing constraints in processing data may dictate the
need to make a 'miniCBF' nothing more than an essential minimum
of information to record the results of the data collection. In that
case it is proper to use the <a href="#ARRAY_DATA">ARRAY_DATA</a> category as a
container for just a single image and a compacted, beam-line
dependent list of data collection parameter values. In such
a case, only the tags '<a href="#_array_data.header_convention">_array_data.header_convention</a>',
'<a href="#_array_data.header_contents">_array_data.header_contents</a>' and '<a href="#_array_data.data">_array_data.data</a>' need be
populated.
For full processing and archiving, most of the tags in this
dictionary will need to be populated.
;
_category.id array_data
_category.mandatory_code no
loop_
_category_key.name '<a href="#_array_data.array_id" >_array_data.array_id</a>'
'<a href="#_array_data.binary_id" >_array_data.binary_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
;
Example 1 -
This example shows two binary data blocks. The first one
was compressed by the CBF_CANONICAL compression algorithm and is
presented as hexadecimal data. The first character 'H' on the
data lines means hexadecimal. It could have been 'O' for octal
or 'D' for decimal. The second character on the line shows
the number of bytes in each word (in this case '4'), which then
requires eight hexadecimal digits per word. The third character
gives the order of octets within a word, in this case '<'
for the ordering 4321 (i.e. 'big-endian'). Alternatively, the
character '>' could have been used for the ordering 1234
(i.e. 'little-endian'). The block has a 'message digest'
to check the integrity of the data.
The second block is similar, but uses CBF_PACKED compression
and BASE64 encoding. Note that the size and the digest are
different.
;
;
loop_
<a href="#_array_data.array_id" >_array_data.array_id</a>
<a href="#_array_data.binary_id" >_array_data.binary_id</a>
<a href="#_array_data.data" >_array_data.data</a>
image_1 1
;
--CIF-BINARY-FORMAT-SECTION--
Content-Type: application/octet-stream;
conversions="<b>X</b>-CBF_CANONICAL"
Content-Transfer-Encoding: <b>X</b>-BASE16
X-Binary-Size: 3927126
X-Binary-ID: 1
Content-MD5: u2sTJEovAHkmkDjPi+gWsg==
# Hexadecimal encoding, byte 0, byte order ...21
#
H4< 0050B810 00000000 00000000 00000000 000F423F 00000000 00000000 ...
....
--CIF-BINARY-FORMAT-SECTION----
;
image_2 2
;
--CIF-BINARY-FORMAT-SECTION--
Content-Type: application/octet-stream;
conversions="X-CBF-PACKED"
Content-Transfer-Encoding: BASE64
X-Binary-Size: 3745758
X-Binary-ID: 2
Content-MD5: 1zsJjWPfol2GYl2V+QSXrw==
ELhQAAAAAAAA...
...
--CIF-BINARY-FORMAT-SECTION----
;
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
;
Example 2 -
This example shows a single image in a miniCBF, provided by
E. Eikenberry. The entire CBF consists of one data block
containing one category and three tags. The CBFlib
program convert_miniCBF and a suitable template file
can be used to convert this miniCBF to a full imgCIF
file.
;
;
###CBF: VERSION 1.5
# CBF file written by CBFlib v0.7.8
data_insulin_pilatus6m
<a href="#_array_data.header_convention">_array_data.header_convention</a> SLS_1.0
<a href="#_array_data.header_contents">_array_data.header_contents</a>
;
# Detector: PILATUS 6M SN: 60-0001
# 2007/Jun/17 15:12:36.928
# Pixel_size 172e-6 m x 172e-6 m
# Silicon sensor, thickness 0.000320 m
# Exposure_time 0.995000 s
# Exposure_period 1.000000 s
# Tau = 194.0e-09 s
# Count_cutoff 1048575 counts
# Threshold_setting 5000 eV
# Wavelength 1.2398 A
# Energy_range (0, 0) eV
# Detector_distance 0.15500 m
# Detector_Voffset -0.01003 m
# Beam_xy (1231.00, 1277.00) pixels
# Flux 22487563295 ph/s
# Filter_transmission 0.0008
# Start_angle 13.0000 deg.
# Angle_increment 1.0000 deg.
# Detector_2theta 0.0000 deg.
# Polarization 0.990
# Alpha 0.0000 deg.
# Kappa 0.0000 deg.
# Phi 0.0000 deg.
# Chi 0.0000 deg.
# Oscillation_axis X, CW
# N_oscillations 1
;
<a href="#_array_data.data">_array_data.data</a>
;
--CIF-BINARY-FORMAT-SECTION--
Content-Type: application/octet-stream;
conversions="x-CBF_BYTE_OFFSET"
Content-Transfer-Encoding: BINARY
X-Binary-Size: 6247567
X-Binary-ID: 1
X-Binary-Element-Type: "signed 32-bit integer"
X-Binary-Element-Byte-Order: LITTLE_ENDIAN
Content-MD5: 8wO6i2+899lf5iO8QPdgrw==
X-Binary-Number-of-Elements: 6224001
X-Binary-Size-Fastest-Dimension: 2463
X-Binary-Size-Second-Dimension: 2527
X-Binary-Size-Padding: 4095
...
--CIF-BINARY-FORMAT-SECTION----
;
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_array_data.array_id" >_array_data.array_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
If not given, it defaults to 1.
;
_item.name '<a href="#_array_data.array_id" >_array_data.array_id</a>'
_item.category_id array_data
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_array_data.binary_id" >_array_data.binary_id</a>
_item_description.description
; This item is an integer identifier which, along with
<a href="#_array_data.array_id" >_array_data.array_id</a>, should uniquely identify the
particular block of array data.
If <a href="#_array_data.binary_id" >_array_data.binary_id</a> is not explicitly given,
it defaults to 1.
The value of <a href="#_array_data.binary_id" >_array_data.binary_id</a> distinguishes
among multiple sets of data with the same array
structure.
If the MIME header of the data array specifies a
value for X-Binary-ID, the value of <a href="#_array_data.binary_id" >_array_data.binary_id</a>
should be equal to the value given for X-Binary-ID.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_array_data.binary_id" >_array_data.binary_id</a>' array_data
implicit
'<a href="#_diffrn_data_frame.binary_id" >_diffrn_data_frame.binary_id</a>' diffrn_data_frame
implicit
'<a href="#_array_intensities.binary_id" >_array_intensities.binary_id</a>' array_intensities
implicit
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_data_frame.binary_id" >_diffrn_data_frame.binary_id</a>' '<a href="#_array_data.binary_id" >_array_data.binary_id</a>'
'<a href="#_array_intensities.binary_id" >_array_intensities.binary_id</a>' '<a href="#_array_data.binary_id" >_array_data.binary_id</a>'
_item_default.value 1
_item_type.code int
loop_
_item_range.maximum
_item_range.minimum
1 1
. 1
save_
save_<a name="_array_data.data" >_array_data.data</a>
_item_description.description
; The value of <a href="#_array_data.data" >_array_data.data</a> contains the array data
encapsulated in a STAR string.
The representation used is a variant on the
Multipurpose Internet Mail Extensions (MIME) specified
in RFC 2045-2049 by N. Freed et al. The boundary
delimiter used in writing an imgCIF or CBF is
'\n--CIF-BINARY-FORMAT-SECTION--' (including the
required initial '\n--').
The Content-Type may be any of the discrete types permitted
in RFC 2045; 'application/octet-stream' is recommended
for diffraction images in the ARRAY_DATA category.
Note: When appropriate in other categories, e.g. for
photographs of crystals, more precise types, such as
'image/jpeg', 'image/tiff', 'image/png', etc. should be used.
If an octet stream was compressed, the compression should
be specified by the parameter
'conversions="X-CBF_PACKED"'
or the parameter
'conversions="X-CBF_CANONICAL"'
or the parameter
'conversions="X-CBF_BYTE_OFFSET"'
If the parameter
'conversions="X-CBF_PACKED"'
is given it may be further modified with the parameters
'"uncorrelated_sections"'
or
'"flat"'
If the '"uncorrelated_sections"' parameter is
given, each section will be compressed without using
the prior section for averaging.
If the '"flat"' parameter is given, each the
image will be treated as one long row.
The Content-Transfer-Encoding may be 'BASE64',
'Quoted-Printable', 'X-BASE8', 'X-BASE10',
'X-BASE16' or 'X-BASE32K', for an imgCIF or 'BINARY'
for a CBF. The octal, decimal and hexadecimal transfer
encodings are provided for convenience in debugging and
are not recommended for archiving and data interchange.
In a CIF, one of the parameters 'charset=us-ascii',
'charset=utf-8' or 'charset=utf-16' may be used on the
Content-Transfer-Encoding to specify the character set
used for the external presentation of the encoded data.
If no charset parameter is given, the character set of
the enclosing CIF is assumed. In any case, if a BOM
flag is detected (FE FF for big-endian UTF-16, FF FE for
little-endian UTF-16 or EF BB BF for UTF-8) is detected,
the indicated charset will be assumed until the end of the
encoded data or the detection of a different BOM. The
charset of the Content-Transfer-Encoding is not the character
set of the encoded data, only the character set of the
presentation of the encoded data and should be respecified
for each distinct STAR string.
In an imgCIF file, the encoded binary data begins after
the empty line terminating the header. In an imgCIF file,
the encoded binary data ends with the terminating boundary
delimiter '\n--CIF-BINARY-FORMAT-SECTION----'
in the currently effective charset or with the '\n; '
that terminates the STAR string.
In a CBF, the raw binary data begins after an empty line
terminating the header and after the sequence:
Octet Hex Decimal Purpose
0 0C 12 (ctrl-L) Page break
1 1A 26 (ctrl-Z) Stop listings in MS-DOS
2 04 04 (Ctrl-D) Stop listings in UNIX
3 D5 213 Binary section begins
None of these octets are included in the calculation of
the message size or in the calculation of the
message digest.
The X-Binary-Size header specifies the size of the
equivalent binary data in octets. If compression was
used, this size is the size after compression, including
any book-keeping fields. An adjustment is made for
the deprecated binary formats in which eight bytes of binary
header are used for the compression type. In this case,
the eight bytes used for the compression type are subtracted
from the size, so that the same size will be reported
if the compression type is supplied in the MIME header.
Use of the MIME header is the recommended way to
supply the compression type. In general, no portion of
the binary header is included in the calculation of the size.
The X-Binary-Element-Type header specifies the type of
binary data in the octets, using the same descriptive
phrases as in <a href="#_array_structure.encoding_type">_array_structure.encoding_type</a>. The default
value is 'unsigned 32-bit integer'.
An MD5 message digest may, optionally, be used. The 'RSA Data
Security, Inc. MD5 Message-Digest Algorithm' should be used.
No portion of the header is included in the calculation of the
message digest.
If the Transfer Encoding is 'X-BASE8', 'X-BASE10' or
'X-BASE16', the data are presented as octal, decimal or
hexadecimal data organized into lines or words. Each word
is created by composing octets of data in fixed groups of
2, 3, 4, 6 or 8 octets, either in the order ...4321 ('big-
endian') or 1234... ('little-endian'). If there are fewer
than the specified number of octets to fill the last word,
then the missing octets are presented as '==' for each
missing octet. Exactly two equal signs are used for each
missing octet even for octal and decimal encoding.
The format of lines is:
rnd xxxxxx xxxxxx xxxxxx
where r is 'H', 'O' or 'D' for hexadecimal, octal or
decimal, n is the number of octets per word and d is '<'
or '>' for the '...4321' and '1234...' octet orderings,
respectively. The '==' padding for the last word should
be on the appropriate side to correspond to the missing
octets, e.g.
H4< FFFFFFFF FFFFFFFF 07FFFFFF ====0000
or
H3> FF0700 00====
For these hexadecimal, octal and decimal formats only,
comments beginning with '#' are permitted to improve
readability.
BASE64 encoding follows MIME conventions. Octets are
in groups of three: c1, c2, c3. The resulting 24 bits
are broken into four six-bit quantities, starting with
the high-order six bits (c1 >> 2) of the first octet, then
the low-order two bits of the first octet followed by the
high-order four bits of the second octet [(c1 & 3)<<4 | (c2>>4)],
then the bottom four bits of the second octet followed by the
high-order two bits of the last octet [(c2 & 15)<<2 | (c3>>6)],
then the bottom six bits of the last octet (c3 & 63). Each
of these four quantities is translated into an ASCII character
using the mapping:
1 2 3 4 5 6
0123456789012345678901234567890123456789012345678901234567890123
| | | | | | |
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
With short groups of octets padded on the right with one '='
if c3 is missing, and with '==' if both c2 and c3 are missing.
X-BASE32K encoding is similar to BASE64 encoding, except that
sets of 15 octets are encoded as sets of 8 16-bit unicode
characters, by breaking the 120 bits into 8 15-bit quantities.
256 is added to each 15 bit quantity to bring it into a
printable uncode range. When encoding, zero padding is used
to fill out the last 15 bit quantity. If 8 or more bits of
padding are used, a single equals sign (hexadecimal 003D) is
appended. Embedded whitespace and newlines are introduced
to produce lines of no more than 80 characters each. On
decoding, all printable ascii characters and ascii whitespace
characters are ignored except for any trailing equals signs.
The number of trailing equals signs indicated the number of
trailing octets to be trimmed from the end of the decoded data.
(see Georgi Darakev, Vassil Litchev, Kostadin Z. Mitev, Herbert
J. Bernstein, 'Efficient Support of Binary Data in the XML
Implementation of the NeXus File Format',absract W0165,
ACA Summer Meeting, Honolulu, HI, July 2006).
QUOTED-PRINTABLE encoding also follows MIME conventions, copying
octets without translation if their ASCII values are 32...38,
42, 48...57, 59, 60, 62, 64...126 and the octet is not a ';'
in column 1. All other characters are translated to =nn, where
nn is the hexadecimal encoding of the octet. All lines are
'wrapped' with a terminating '=' (i.e. the MIME conventions
for an implicit line terminator are never used).
The "X-Binary-Element-Byte-Order" can specify either
'"BIG_ENDIAN"' or '"LITTLE_ENDIAN"' byte order of the imaage
data. Only LITTLE_ENDIAN is recommended. Processors
may treat BIG_ENDIAN as a warning of data that can
only be processed by special software.
The "X-Binary-Number-of-Elements" specifies the number of
elements (not the number of octets) in the decompressed, decoded
image.
The optional "X-Binary-Size-Fastest-Dimension" specifies the
number of elements (not the number of octets) in one row of the
fastest changing dimension of the binary data array. This
information must be in the MIME header for proper operation of
some of the decompression algorithms.
The optional "X-Binary-Size-Second-Dimension" specifies the
number of elements (not the number of octets) in one column of
the second-fastest changing dimension of the binary data array.
This information must be in the MIME header for proper operation
of some of the decompression algorithms.
The optional "X-Binary-Size-Third-Dimension" specifies the number
of sections for the third-fastest changing dimension of the
binary data array.
The optional "X-Binary-Size-Padding" specifies the size in
octets of an optional padding after the binary array data and
before the closing flags for a binary section.
;
_item.name '<a href="#_array_data.data" >_array_data.data</a>'
_item.category_id array_data
_item.mandatory_code yes
_item_type.code binary
save_
save_<a name="_array_data.header_contents" >_array_data.header_contents</a>
_item_description.description
; This item is an text field for use in minimal CBF files to carry
essential header information to be kept with image data
in _array_data.data when the tags that normally carry the
structured metadata for the image have not been populated.
Normally this data item should not appear when the full set
of tags have been populated and _diffrn_data_frame.details
appears.
;
_item.name '<a href="#_array_data.header_contents" >_array_data.header_contents</a>'
_item.category_id <a href="#ARRAY_DATA">array_data</a>
_item.mandatory_code no
_item_type.code text
save_
save_<a name="_array_data.header_convention" >_array_data.header_convention</a>
_item_description.description
; This item is an identifier for the convention followed in
constructing the contents of <a href="#_array_data.header_contents" >_array_data.header_contents</a>
The permitted values are of the of an image creator identifier
followed by an underscore and a version string. To avoid
confusion about conventions, all creator identifiers
should be registered with the IUCr and the conventions
for all identifiers and versions should be posted on
the MEDSBIO.org web site.
;
_item.name '<a href="#_array_data.header_convention" >_array_data.header_convention</a>'
_item.category_id <a href="#ARRAY_DATA">array_data</a>
_item.mandatory_code no
_item_type.code code
save_
######################
# <a name="ARRAY_ELEMENT_SIZE">ARRAY_ELEMENT_SIZE</a> #
######################
save_ARRAY_ELEMENT_SIZE
_category.description
; Data items in the <a href="#ARRAY_ELEMENT_SIZE">ARRAY_ELEMENT_SIZE</a> category record the physical
size of array elements along each array dimension.
;
_category.id array_element_size
_category.mandatory_code no
loop_
_category_key.name '<a href="#_array_element_size.array_id" >_array_element_size.array_id</a>'
'<a href="#_array_element_size.index" >_array_element_size.index</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - A regular 2D array with a uniform element dimension
of 1220 nanometres.
;
;
loop_
<a href="#_array_element_size.array_id" >_array_element_size.array_id</a>
<a href="#_array_element_size.index" >_array_element_size.index</a>
<a href="#_array_element_size.size" >_array_element_size.size</a>
image_1 1 1.22e-6
image_1 2 1.22e-6
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_array_element_size.array_id" >_array_element_size.array_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
;
_item.name '<a href="#_array_element_size.array_id" >_array_element_size.array_id</a>'
_item.category_id array_element_size
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_array_element_size.index" >_array_element_size.index</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure_list.index" >_array_structure_list.index</a> in
the ARRAY_STRUCTURE_LIST category.
;
_item.name '<a href="#_array_element_size.index" >_array_element_size.index</a>'
_item.category_id array_element_size
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_array_element_size.size" >_array_element_size.size</a>
_item_description.description
; The size in metres of an image element in this
dimension. This supposes that the elements are arranged
on a regular grid.
;
_item.name '<a href="#_array_element_size.size" >_array_element_size.size</a>'
_item.category_id array_element_size
_item.mandatory_code yes
_item_type.code float
_item_units.code 'metres'
loop_
_item_range.maximum
_item_range.minimum
. 0.0
save_
#####################
# <a name="ARRAY_INTENSITIES">ARRAY_INTENSITIES</a> #
#####################
save_ARRAY_INTENSITIES
_category.description
; Data items in the <a href="#ARRAY_INTENSITIES">ARRAY_INTENSITIES</a> category record the
information required to recover the intensity data from
the set of data values stored in the <a href="#ARRAY_DATA">ARRAY_DATA</a> category.
The detector may have a complex relationship
between the raw intensity values and the number of
incident photons. In most cases, the number stored
in the final array will have a simple linear relationship
to the actual number of incident photons, given by
<a href="#_array_intensities.gain">_array_intensities.gain</a>. If raw, uncorrected values
are presented (e.g. for calibration experiments), the
value of <a href="#_array_intensities.linearity">_array_intensities.linearity</a> will be 'raw'
and <a href="#_array_intensities.gain">_array_intensities.gain</a> will not be used.
;
_category.id array_intensities
_category.mandatory_code no
loop_
_category_key.name '<a href="#_array_intensities.array_id" >_array_intensities.array_id</a>'
'<a href="#_array_intensities.binary_id" >_array_intensities.binary_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
;
Example 1
;
;
loop_
<a href="#_array_intensities.array_id" >_array_intensities.array_id</a>
<a href="#_array_intensities.linearity" >_array_intensities.linearity</a>
<a href="#_array_intensities.gain" >_array_intensities.gain</a>
<a href="#_array_intensities.overload" >_array_intensities.overload</a>
<a href="#_array_intensities.undefined_value" >_array_intensities.undefined_value</a>
<a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>
<a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a>
<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>
image_1 linear 1.2 655535 0 2 2 hardware
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_array_intensities.array_id" >_array_intensities.array_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
;
_item.name '<a href="#_array_intensities.array_id" >_array_intensities.array_id</a>'
_item.category_id array_intensities
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_array_intensities.binary_id" >_array_intensities.binary_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_data.binary_id" >_array_data.binary_id</a> in the
<a href="#ARRAY_DATA">ARRAY_DATA</a> category.
;
_item.name '<a href="#_array_intensities.binary_id" >_array_intensities.binary_id</a>'
_item.category_id array_intensities
_item.mandatory_code implicit
_item_type.code int
save_
save_<a name="_array_intensities.gain" >_array_intensities.gain</a>
_item_description.description
; Detector 'gain'. The factor by which linearized
intensity count values should be divided to produce
true photon counts.
;
_item.name '<a href="#_array_intensities.gain" >_array_intensities.gain</a>'
_item.category_id array_intensities
_item.mandatory_code yes
_item_type.code float
loop_
_item_range.maximum
_item_range.minimum
. 0.0
_item_units.code 'counts_per_photon'
loop_
_item_related.related_name
_item_related.function_code '<a href="#_array_intensities.gain_esd" >_array_intensities.gain_esd</a>'
'associated_value'
save_
save_<a name="_array_intensities.gain_esd" >_array_intensities.gain_esd</a>
_item_description.description
; The estimated standard deviation in detector 'gain'.
;
_item.name '<a href="#_array_intensities.gain_esd" >_array_intensities.gain_esd</a>'
_item.category_id array_intensities
_item.mandatory_code yes
_item_type.code float
loop_
_item_range.maximum
_item_range.minimum
. 0.0
_item_units.code 'counts_per_photon'
loop_
_item_related.related_name
_item_related.function_code '<a href="#_array_intensities.gain" >_array_intensities.gain</a>'
'associated_esd'
save_
save_<a name="_array_intensities.linearity" >_array_intensities.linearity</a>
_item_description.description
; The intensity linearity scaling method used to convert
from the raw intensity to the stored element value:
'linear' is linear.
'offset' means that the value defined by
<a href="#_array_intensities.offset" >_array_intensities.offset</a> should be added to each
element value.
'scaling' means that the value defined by
<a href="#_array_intensities.scaling">_array_intensities.scaling</a> should be multiplied with each
element value.
'scaling_offset' is the combination of the two previous cases,
with the scale factor applied before the offset value.
'sqrt_scaled' means that the square root of raw
intensities multiplied by <a href="#_array_intensities.scaling">_array_intensities.scaling</a> is
calculated and stored, perhaps rounded to the nearest
integer. Thus, linearization involves dividing the stored
values by <a href="#_array_intensities.scaling">_array_intensities.scaling</a> and squaring the
result.
'logarithmic_scaled' means that the logarithm base 10 of
raw intensities multiplied by <a href="#_array_intensities.scaling">_array_intensities.scaling</a>
is calculated and stored, perhaps rounded to the nearest
integer. Thus, linearization involves dividing the stored
values by <a href="#_array_intensities.scaling">_array_intensities.scaling</a> and calculating 10
to the power of this number.
'raw' means that the data are a set of raw values straight
from the detector.
;
_item.name '<a href="#_array_intensities.linearity" >_array_intensities.linearity</a>'
_item.category_id array_intensities
_item.mandatory_code yes
_item_type.code code
loop_
_item_enumeration.value
_item_enumeration.detail
'linear' .
'offset'
; The value defined by <a href="#_array_intensities.offset" >_array_intensities.offset</a> should
be added to each element value.
;
'scaling'
; The value defined by <a href="#_array_intensities.scaling">_array_intensities.scaling</a> should be
multiplied with each element value.
;
'scaling_offset'
; The combination of the scaling and offset
with the scale factor applied before the offset value.
;
'sqrt_scaled'
; The square root of raw intensities multiplied by
<a href="#_array_intensities.scaling">_array_intensities.scaling</a> is calculated and stored,
perhaps rounded to the nearest integer. Thus,
linearization involves dividing the stored
values by <a href="#_array_intensities.scaling">_array_intensities.scaling</a> and squaring the
result.
;
'logarithmic_scaled'
; The logarithm base 10 of raw intensities multiplied by
<a href="#_array_intensities.scaling">_array_intensities.scaling</a> is calculated and stored,
perhaps rounded to the nearest integer. Thus,
linearization involves dividing the stored values by
<a href="#_array_intensities.scaling">_array_intensities.scaling</a> and calculating 10 to the
power of this number.
;
'raw'
; The array consists of raw values to which no corrections have
been applied. While the handling of the data is similar to
that given for 'linear' data with no offset, the meaning of
the data differs in that the number of incident photons is
not necessarily linearly related to the number of counts
reported. This value is intended for use either in
calibration experiments or to allow for handling more
complex data-fitting algorithms than are allowed for by
this data item.
;
save_
save_<a name="_array_intensities.offset" >_array_intensities.offset</a>
_item_description.description
; Offset value to add to array element values in the manner
described by the item <a href="#_array_intensities.linearity" >_array_intensities.linearity</a>.
;
_item.name '<a href="#_array_intensities.offset" >_array_intensities.offset</a>'
_item.category_id array_intensities
_item.mandatory_code no
_item_type.code float
save_
save_<a name="_array_intensities.overload" >_array_intensities.overload</a>
_item_description.description
; The saturation intensity level for this data array.
;
_item.name '<a href="#_array_intensities.overload" >_array_intensities.overload</a>'
_item.category_id array_intensities
_item.mandatory_code no
_item_type.code float
_item_units.code 'counts'
save_
save_<a name="_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>
_item_description.description
; The value of <a href=#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a> specifies
the number of pixels that compose one element in the direction
of the most rapidly varying array dimension.
Typical values are 1, 2, 4 or 8. When there is 1 pixel per
array element in both directions, the value given for
<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a> normally should be
'none'.
It is specified as a float to allow for binning algorithms that
create array elements that are not integer multiples of the
detector pixel size.
;
_item.name '<a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>'
_item.category_id array_intensities
_item.mandatory_code implicit
_item_type.code float
_item_default.value 1.
loop_
_item_range.maximum
_item_range.minimum
. 0.0
_item_units.code 'pixels_per_element'
save_
save_<a name="_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a>
_item_description.description
; The value of <a href=#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a> specifies
the number of pixels that compose one element in the direction
of the second most rapidly varying array dimension.
Typical values are 1, 2, 4 or 8. When there is 1 pixel per
array element in both directions, the value given for
<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a> normally should be
'none'.
It is specified as a float to allow for binning algorithms that
create array elements that are not integer multiples of the
detector pixel size.
;
_item.name '<a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a>'
_item.category_id array_intensities
_item.mandatory_code implicit
_item_type.code float
_item_default.value 1.
loop_
_item_range.maximum
_item_range.minimum
. 0.0
_item_units.code 'pixels_per_element'
save_
save_<a name="_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>
_item_description.description
; The value of <a href="#_array_intensities.pixel_binning_method">_array_intensities.pixel_binning_method</a> specifies
the method used to derive array elements from multiple pixels.
;
_item.name '<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>'
_item.category_id array_intensities
_item.mandatory_code implicit
_item_type.code code
loop_
_item_enumeration.value
_item_enumeration.detail
'hardware'
; The element intensities were derived from the raw data of one
or more pixels by used of hardware in the detector, e.g. by use
of shift registers in a CCD to combine pixels into super-pixels.
;
'software'
; The element intensities were derived from the raw data of more
than one pixel by use of software.
;
'combined'
; The element intensities were derived from the raw data of more
than one pixel by use of both hardware and software, as when
hardware binning is used in one direction and software in the
other.
;
'none'
; In the both directions, the data has not been binned. The
number of pixels is equal to the number of elements.
When the value of <a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a> is
'none' the values of <a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>
and <a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a> both must be 1.
;
'unspecified'
; The method used to derive element intensities is not specified.
;
_item_default.value 'unspecified'
save_
save_<a name="_array_intensities.scaling" >_array_intensities.scaling</a>
_item_description.description
; Multiplicative scaling value to be applied to array data
in the manner described by item
<a href="#_array_intensities.linearity" >_array_intensities.linearity</a>.
;
_item.name '<a href="#_array_intensities.scaling" >_array_intensities.scaling</a>'
_item.category_id array_intensities
_item.mandatory_code no
_item_type.code float
save_
save_<a name="_array_intensities.undefined_value" >_array_intensities.undefined_value</a>
_item_description.description
; A value to be substituted for undefined values in
the data array.
;
_item.name '<a href="#_array_intensities.undefined_value" >_array_intensities.undefined_value</a>'
_item.category_id array_intensities
_item.mandatory_code no
_item_type.code float
save_
###################
# <a name="ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> #
###################
save_ARRAY_STRUCTURE
_category.description
; Data items in the <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category record the organization and
encoding of array data that may be stored in the <a href="#ARRAY_DATA">ARRAY_DATA</a> category.
;
_category.id array_structure
_category.mandatory_code no
_category_key.name '<a href="#_array_structure.id" >_array_structure.id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 -
;
;
loop_
_array_structure.id
_array_structure.encoding_type
_array_structure.compression_type
_array_structure.byte_order
image_1 "unsigned 16-bit integer" none little_endian
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_array_structure.byte_order" >_array_structure.byte_order</a>
_item_description.description
; The order of bytes for integer values which require more
than 1 byte.
(IBM-PC's and compatibles and DEC VAXs use low-byte-first
ordered integers, whereas Hewlett Packard 700
series, Sun-4 and Silicon Graphics use high-byte-first
ordered integers. DEC Alphas can produce/use either
depending on a compiler switch.)
;
_item.name '<a href="#_array_structure.byte_order" >_array_structure.byte_order</a>'
_item.category_id array_structure
_item.mandatory_code yes
_item_type.code ucode
loop_
_item_enumeration.value
_item_enumeration.detail
'big_endian'
; The first byte in the byte stream of the bytes which make up an
integer value is the most significant byte of an integer.
;
'little_endian'
; The last byte in the byte stream of the bytes which make up an
integer value is the most significant byte of an integer.
;
save_
save_<a name="_array_structure.compression_type" >_array_structure.compression_type</a>
_item_description.description
; Type of data-compression method used to compress the array
data.
;
_item.name '<a href="#_array_structure.compression_type" >_array_structure.compression_type</a>'
_item.category_id array_structure
_item.mandatory_code no
_item_type.code ucode
_item_default.value 'none'
loop_
_item_enumeration.value
_item_enumeration.detail
'byte_offset'
; Using the 'byte_offset' compression scheme as per A. Hammersley
and the CBFlib manual, section 3.3.3
;
'canonical'
; Using the 'canonical' compression scheme (International Tables
for Crystallography Volume G, Section 5.6.3.1) and CBFlib
manual section 3.3.1
;
'none'
; Data are stored in normal format as defined by
<a href="#_array_structure.encoding_type" >_array_structure.encoding_type</a> and
<a href="#_array_structure.byte_order" >_array_structure.byte_order</a>.
;
'packed'
; Using the 'packed' compression scheme, a CCP4-style packing
as per J. P. Abrahams pack_c.c and CBFlib manual, section 3.3.2.
;
'packed_v2'
; Using the 'packed' compression scheme, version 2, as per
J. P. Abrahams pack_c.c and CBFlib manual, section 3.3.2.
;
save_
save_<a name="_array_structure.compression_type_flag" >_array_structure.compression_type_flag</a>
_item_description.description
; Flags modifying the type of data-compression method used to
compress the arraydata.
;
_item.name '<a href="#_array_structure.compression_type_flag" >_array_structure.compression_type_flag</a>'
_item.category_id array_structure
_item.mandatory_code no
_item_type.code ucode
loop_
_item_enumeration.value
_item_enumeration.detail
'uncorrelated_sections'
; When applying packed or packed_v2 compression on an array with
uncorrelated sections, do not average in points from the prior
section.
;
'flat'
; When applying packed or packed_v2 compression on an array with
treat the entire image as a single line set the maximum number
of bits for an offset to 65 bits.
The flag is included for compatibility with software prior to
CBFlib_0.7.7, and should not be used for new data sets.
;
save_
save_<a name="_array_structure.encoding_type" >_array_structure.encoding_type</a>
_item_description.description
; Data encoding of a single element of array data.
The type 'unsigned 1-bit integer' is used for
packed Booleans arrays for masks. Each element
of the array corresponds to a single bit
packed in unsigned 8-bit data.
In several cases, the IEEE format is referenced.
See IEEE Standard 754-1985 (IEEE, 1985).
Ref: IEEE (1985). IEEE Standard for Binary Floating-Point
Arithmetic. ANSI/IEEE Std 754-1985. New York: Institute of
Electrical and Electronics Engineers.
;
_item.name '<a href="#_array_structure.encoding_type" >_array_structure.encoding_type</a>'
_item.category_id array_structure
_item.mandatory_code yes
_item_type.code uline
loop_
_item_enumeration.value
'unsigned 1-bit integer'
'unsigned 8-bit integer'
'signed 8-bit integer'
'unsigned 16-bit integer'
'signed 16-bit integer'
'unsigned 32-bit integer'
'signed 32-bit integer'
'signed 32-bit real IEEE'
'signed 64-bit real IEEE'
'signed 32-bit complex IEEE'
save_
save_<a name="_array_structure.id" >_array_structure.id</a>
_item_description.description
; The value of <a href="#_array_structure.id" >_array_structure.id</a> must uniquely identify
each item of array data.
This item has been made implicit and given a default value of 1
as a convenience in writing miniCBF files. Normally an
explicit name with useful content should be used.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_array_structure.id" >_array_structure.id</a>' array_structure implicit
'<a href="#_array_data.array_id" >_array_data.array_id</a>' array_data implicit
'<a href="#_array_structure_list.array_id" >_array_structure_list.array_id</a>' array_structure_list implicit
'<a href="#_array_intensities.array_id" >_array_intensities.array_id</a>' array_intensities implicit
'<a href="#_diffrn_data_frame.array_id" >_diffrn_data_frame.array_id</a>' diffrn_data_frame implicit
_item_default.value 1
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_array_data.array_id" >_array_data.array_id</a>' '<a href="#_array_structure.id" >_array_structure.id</a>'
'<a href="#_array_structure_list.array_id" >_array_structure_list.array_id</a>' '<a href="#_array_structure.id" >_array_structure.id</a>'
'<a href="#_array_intensities.array_id" >_array_intensities.array_id</a>' '<a href="#_array_structure.id" >_array_structure.id</a>'
'<a href="#_diffrn_data_frame.array_id" >_diffrn_data_frame.array_id</a>' '<a href="#_array_structure.id" >_array_structure.id</a>'
save_
########################
# <a name="ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a> #
########################
save_ARRAY_STRUCTURE_LIST
_category.description
; Data items in the <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a> category record the size
and organization of each array dimension.
The relationship to physical axes may be given.
;
_category.id array_structure_list
_category.mandatory_code no
loop_
_category_key.name '<a href="#_array_structure_list.array_id" >_array_structure_list.array_id</a>'
'<a href="#_array_structure_list.index" >_array_structure_list.index</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - An image array of 1300 x 1200 elements. The raster
order of the image is left to right (increasing) in the
first dimension and bottom to top (decreasing) in
the second dimension.
;
;
loop_
<a href="#_array_structure_list.array_id" >_array_structure_list.array_id</a>
<a href="#_array_structure_list.index" >_array_structure_list.index</a>
<a href="#_array_structure_list.dimension" >_array_structure_list.dimension</a>
<a href="#_array_structure_list.precedence" >_array_structure_list.precedence</a>
<a href="#_array_structure_list.direction" >_array_structure_list.direction</a>
<a href="#_array_structure_list.axis_id" >_array_structure_list.axis_set_id</a>
image_1 1 1300 1 increasing ELEMENT_X
image_1 2 1200 2 decreasing ELEMENY_Y
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_array_structure_list.array_id" >_array_structure_list.array_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
;
_item.name '<a href="#_array_structure_list.array_id" >_array_structure_list.array_id</a>'
_item.category_id array_structure_list
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_array_structure_list.axis_set_id" >_array_structure_list.axis_set_id</a>
_item_description.description
; This is a descriptor for the physical axis or set of axes
corresponding to an array index.
This data item is related to the axes of the detector
itself given in <a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a>, but usually differs
in that the axes in this category are the axes of the
coordinate system of reported data points, while the axes in
<a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a> are the physical axes
of the detector describing the 'poise' of the detector as an
overall physical object.
If there is only one axis in the set, the identifier of
that axis should be used as the identifier of the set.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_array_structure_list.axis_set_id" >_array_structure_list.axis_set_id</a>'
array_structure_list yes
'<a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>'
array_structure_list_axis implicit
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>'
'<a href="#_array_structure_list.axis_set_id" >_array_structure_list.axis_set_id</a>'
save_
save_<a name="_array_structure_list.dimension" >_array_structure_list.dimension</a>
_item_description.description
; The number of elements stored in the array structure in this
dimension.
;
_item.name '<a href="#_array_structure_list.dimension" >_array_structure_list.dimension</a>'
_item.category_id array_structure_list
_item.mandatory_code yes
_item_type.code int
loop_
_item_range.maximum
_item_range.minimum
1 1
. 1
save_
save_<a name="_array_structure_list.direction" >_array_structure_list.direction</a>
_item_description.description
; Identifies the direction in which this array index changes.
;
_item.name '<a href="#_array_structure_list.direction" >_array_structure_list.direction</a>'
_item.category_id array_structure_list
_item.mandatory_code yes
_item_type.code code
loop_
_item_enumeration.value
_item_enumeration.detail
'increasing'
; Indicates the index changes from 1 to the maximum dimension.
;
'decreasing'
; Indicates the index changes from the maximum dimension to 1.
;
save_
save_<a name="_array_structure_list.index" >_array_structure_list.index</a>
_item_description.description
; Identifies the one-based index of the row or column in the
array structure.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_array_structure_list.index" >_array_structure_list.index</a>' array_structure_list yes
'<a href="#_array_structure_list.precedence" >_array_structure_list.precedence</a>' array_structure_list yes
'<a href="#_array_element_size.index" >_array_element_size.index</a>' array_element_size yes
_item_type.code int
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_array_element_size.index" >_array_element_size.index</a>' '<a href="#_array_structure_list.index" >_array_structure_list.index</a>'
loop_
_item_range.maximum
_item_range.minimum
1 1
. 1
save_
save_<a name="_array_structure_list.precedence" >_array_structure_list.precedence</a>
_item_description.description
; Identifies the rank order in which this array index changes
with respect to other array indices. The precedence of 1
indicates the index which changes fastest.
;
_item.name '<a href="#_array_structure_list.precedence" >_array_structure_list.precedence</a>'
_item.category_id array_structure_list
_item.mandatory_code yes
_item_type.code int
loop_
_item_range.maximum
_item_range.minimum
1 1
. 1
save_
#############################
# <a name="ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a> #
#############################
save_ARRAY_STRUCTURE_LIST_AXIS
_category.description
; Data items in the <a href="#ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a> category describe
the physical settings of sets of axes for the centres of pixels that
correspond to data points described in the
<a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a> category.
In the simplest cases, the physical increments of a single axis correspond
to the increments of a single array index. More complex organizations,
e.g. spiral scans, may require coupled motions along multiple axes.
Note that a spiral scan uses two coupled axes: one for the angular
direction and one for the radial direction. This differs from a
cylindrical scan for which the two axes are not coupled into one set.
;
_category.id array_structure_list_axis
_category.mandatory_code no
loop_
_category_key.name
'<a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>'
'<a href="#_array_structure_list_axis.axis_id" >_array_structure_list_axis.axis_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
save_
save_<a name="_array_structure_list_axis.axis_id" >_array_structure_list_axis.axis_id</a>
_item_description.description
; The value of this data item is the identifier of one of
the axes in the set of axes for which settings are being
specified.
Multiple axes may be specified for the same value of
<a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>.
This item is a pointer to <a href="#_axis.id" >_axis.id</a> in the
<a href="#AXIS">AXIS</a> category.
;
_item.name '<a href="#_array_structure_list_axis.axis_id" >_array_structure_list_axis.axis_id</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>
_item_description.description
; The value of this data item is the identifier of the
set of axes for which axis settings are being specified.
Multiple axes may be specified for the same value of
<a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>.
This item is a pointer to
<a href="#_array_structure_list.axis_set_id" >_array_structure_list.axis_set_id</a>
in the <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a> category.
If this item is not specified, it defaults to the corresponding
axis identifier.
;
_item.name '<a href="#_array_structure_list_axis.axis_set_id" >_array_structure_list_axis.axis_set_id</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_array_structure_list_axis.angle" >_array_structure_list_axis.angle</a>
_item_description.description
; The setting of the specified axis in degrees for the first
data point of the array index with the corresponding value
of <a href="#_array_structure_list.axis_set_id">_array_structure_list.axis_set_id</a>. If the index is
specified as 'increasing', this will be the centre of the
pixel with index value 1. If the index is specified as
'decreasing', this will be the centre of the pixel with
maximum index value.
;
_item.name '<a href="#_array_structure_list_axis.angle" >_array_structure_list_axis.angle</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_array_structure_list_axis.angle_increment">_array_structure_list_axis.angle_increment</a>
_item_description.description
; The pixel-centre-to-pixel-centre increment in the angular
setting of the specified axis in degrees. This is not
meaningful in the case of 'constant velocity' spiral scans
and should not be specified for this case.
See <a href="#_array_structure_list_axis.angular_pitch">_array_structure_list_axis.angular_pitch</a>.
;
_item.name '<a href="#_array_structure_list_axis.angle_increment">_array_structure_list_axis.angle_increment</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_array_structure_list_axis.displacement" >_array_structure_list_axis.displacement</a>
_item_description.description
; The setting of the specified axis in millimetres for the first
data point of the array index with the corresponding value
of <a href="#_array_structure_list.axis_set_id">_array_structure_list.axis_set_id</a>. If the index is
specified as 'increasing', this will be the centre of the
pixel with index value 1. If the index is specified as
'decreasing', this will be the centre of the pixel with
maximum index value.
;
_item.name '<a href="#_array_structure_list_axis.displacement" >_array_structure_list_axis.displacement</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_array_structure_list_axis.fract_displacement" >_array_structure_list_axis.fract_displacement</a>
_item_description.description
; The setting of the specified axis as a decimal fraction of
the axis unit vector for the first data point of the array
index with the corresponding value of
<a href="#_array_structure_list.axis_set_id">_array_structure_list.axis_set_id</a>.
If the index is specified as 'increasing', this will be the
centre of the pixel with index value 1. If the index is
specified as 'decreasing', this will be the centre of the
pixel with maximum index value.
;
_item.name '<a href="#_array_structure_list_axis.fract_displacement" >_array_structure_list_axis.fract_displacement</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
save_
save_<a name="_array_structure_list_axis.displacement_increment">_array_structure_list_axis.displacement_increment</a>
_item_description.description
; The pixel-centre-to-pixel-centre increment for the displacement
setting of the specified axis in millimetres.
;
_item.name
'<a href="#_array_structure_list_axis.displacement_increment">_array_structure_list_axis.displacement_increment</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_array_structure_list_axis.fract_displacement_increment">_array_structure_list_axis.fract_displacement_increment</a>
_item_description.description
; The pixel-centre-to-pixel-centre increment for the displacement
setting of the specified axis as a decimal fraction of the
axis unit vector.
;
_item.name
'<a href="#_array_structure_list_axis.fract_displacement_increment">_array_structure_list_axis.fract_displacement_increment</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_array_structure_list_axis.angular_pitch">_array_structure_list_axis.angular_pitch</a>
_item_description.description
; The pixel-centre-to-pixel-centre distance for a one-step
change in the setting of the specified axis in millimetres.
This is meaningful only for 'constant velocity' spiral scans
or for uncoupled angular scans at a constant radius
(cylindrical scans) and should not be specified for cases
in which the angle between pixels (rather than the distance
between pixels) is uniform.
See <a href="#_array_structure_list_axis.angle_increment">_array_structure_list_axis.angle_increment</a>.
;
_item.name '<a href="#_array_structure_list_axis.angular_pitch">_array_structure_list_axis.angular_pitch</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_array_structure_list_axis.radial_pitch">_array_structure_list_axis.radial_pitch</a>
_item_description.description
; The radial distance from one 'cylinder' of pixels to the
next in millimetres. If the scan is a 'constant velocity'
scan with differing angular displacements between pixels,
the value of this item may differ significantly from the
value of <a href="#_array_structure_list_axis.displacement_increment">_array_structure_list_axis.displacement_increment</a>.
;
_item.name '<a href="#_array_structure_list_axis.radial_pitch">_array_structure_list_axis.radial_pitch</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_array_structure_list_axis.reference_angle">_array_structure_list_axis.reference_angle</a>
_item_description.description
; The value of _array_structure_list_axis.reference_angle
specifies the setting of the angle of this axis used for
determining a reference beam center and a reference detector
distance. It is normally expected to be identical to the
value of _array_structure_list.angle.
;
_item.name '<a href="#_array_structure_list_axis.reference_angle">_array_structure_list_axis.reference_angle</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code implicit
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_array_structure_list_axis.reference_displacement">_array_structure_list_axis.reference_displacement</a>
_item_description.description
; The value of _array_structure_list_axis.reference_displacement
specifies the setting of the displacement of this axis used
for determining a reference beam center and a reference detector
distance. It is normally expected to be identical to the value
of _array_structure_list.displacement.
;
_item.name '<a href="#_array_structure_list_axis.reference_displacement">_array_structure_list_axis.reference_displacement</a>'
_item.category_id array_structure_list_axis
_item.mandatory_code implicit
_item_type.code float
_item_units.code 'millimetres'
save_
########
# <a name="AXIS">AXIS</a> #
########
save_AXIS
_category.description
; Data items in the <a href="#AXIS">AXIS</a> category record the information required
to describe the various goniometer, detector, source and other
axes needed to specify a data collection or the axes defining the
coordinate system of an image.
The location of each axis is specified by two vectors: the axis
itself, given by a unit vector in the direction of the axis, and
an offset to the base of the unit vector.
The vectors defining an axis are referenced to an appropriate
coordinate system. The axis vector, itself, is a dimensionless
unit vector. Where meaningful, the offset vector is given in
millimetres. In coordinate systems not measured in metres,
the offset is not specified and is taken as zero.
The available coordinate systems are:
The imgCIF standard laboratory coordinate system
The direct lattice (fractional atomic coordinates)
The orthogonal Cartesian coordinate system (real space)
The reciprocal lattice
An abstract orthogonal Cartesian coordinate frame
For consistency in this discussion, we call the three coordinate
system axes <b>X</b>, <b>Y</b> and <b>Z</b>. This is appropriate for the imgCIF
standard laboratory coordinate system, and last two Cartesian
coordinate systems, but for the direct lattice, <b>X</b> corresponds
to <b>a</b>, <b>Y</b> to <b>b</b> and <b>Z</b> to <b>c</b>, while for the reciprocal lattice,
<b><b>X</b></b> corresponds to <b>a*</b>, <b>Y</b> to <b>b*</b> and <b>Z</b> to <b>c*</b>.
For purposes of visualization, all the coordinate systems are
taken as right-handed, i.e., using the convention that the extended
thumb of a right hand could point along the first (<b>X</b>) axis, the
straightened pointer finger could point along the second (<b>Y</b>) axis
and the middle finger folded inward could point along the third (<b>Z</b>)
axis.
<b>THE IMGCIF STANDARD LABORATORY COORDINATE SYSTEM</b>
The imgCIF standard laboratory coordinate system is a right-handed
orthogonal coordinate similar to the MOSFLM coordinate system,
but imgCIF puts Z along the X-ray beam, rather than putting X along the
X-ray beam as in MOSFLM.
The vectors for the imgCIF standard laboratory coordinate system
form a right-handed Cartesian coordinate system with its origin
in the sample or specimen. The origin of the axis system should,
if possible, be defined in terms of mechanically stable axes to be
be both in the sample and in the beam. If the sample goniometer or other
sample positioner has two axes the intersection of which defines a
unique point at which the sample should be mounted to be bathed
by the beam, that will be the origin of the axis system. If no such
point is defined, then the midpoint of the line of intersection
between the sample and the center of the beam will define the origin.
For this definition the sample positioning system will be set at
its initial reference position for the experiment.
| <b>Y</b> (to complete right-handed system)
|
|
|
|
|
|________________<b><b>X</b></b>
/ principal goniometer axis
/
/
/
/
/<b>Z</b> (to source)
Axis 1 (<b>X</b>): The <b>X</b>-axis is aligned to the mechanical axis pointing from
the sample or specimen along the principal axis of the goniometer or
sample positioning system if the sample positioning system has an axis that
intersects the origin and which form an angle of more than 22.5 degrees
with the beam axis.
Axis 2 (<b>Y</b>): The <b>Y</b>-axis completes an orthogonal right-handed system
defined by the <b><b>X</b></b>-axis and the <b>Z</b>-axis (see below).
Axis 3 (<b>Z</b>): The <b>Z</b>-axis is derived from the source axis which goes from
the sample to the source. The <b>Z</b>-axis is the component of the source axis
in the direction of the source orthogonal to the <b>X</b>-axis in the plane
defined by the <b>X</b>-axis and the source axis.
If the conditions for the <b>X</b>-axis can be met, the coordinate system
will be based on the goniometer or other sample positioning system
and the beam and not on the orientation of the detector, gravity etc.
The vectors necessary to specify all other axes are given by sets of
three components in the order (<b>X</b>, <b>Y</b>, <b>Z</b>).
If the axis involved is a rotation axis, it is right-handed, i.e. as
one views the object to be rotated from the origin (the tail) of the
unit vector, the rotation is clockwise. If a translation axis is
specified, the direction of the unit vector specifies the sense of
positive translation.
Note: This choice of coordinate system is similar to but significantly
different from the choice in MOSFLM (Leslie & Powell, 2004). In MOSFLM,
<b>X</b> is along the X-ray beam (the CBF/imgCIF <b>Z</b> axis) and <b>Z</b> is along the
rotation axis.
In some experimental techniques, there is no goniometer or the principal
axis of the goniometer is at a small acute angle with respect to
the source axis. In such cases, other reference axes are needed
to define a useful coordinate system. The order of priority in
defining directions in such cases is to use the detector, then
gravity, then north.
If the <b>X</b>-axis cannot be defined as above, then the
direction (not the origin) of the X-axis should be parallel to the axis
of the primary detector element corresponding to the most rapidly
varying dimension of that detector element's data array, with its
positive sense corresponding to increasing values of the index for
that dimension. If the detector is such that such a direction cannot
be defined (as with a point detector) or that direction forms an
angle of less than 22.5 degrees with respect to the source axis, then
the <b>X</b>-axis should be chosen so that if the <b>Y</b>-axis is chosen
in the direction of gravity, and the <b>Z</b>-axis is chosen to be along
the source axis, a right-handed orthogonal coordinate system is chosen.
In the case of a vertical source axis, as a last resort, the
<b>X</b>-axis should be chosen to point North.
All rotations are given in degrees and all translations are given in mm.
Axes may be dependent on one another. The <b>X</b>-axis is the only goniometer
axis the direction of which is strictly connected to the hardware. All
other axes are specified by the positions they would assume when the
axes upon which they depend are at their zero points.
When specifying detector axes, the axis is given to the beam centre.
The location of the beam centre on the detector should be given in the
<a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> category in distortion-corrected millimetres from
the (0,0) corner of the detector.
It should be noted that many different origins arise in the definition
of an experiment. In particular, as noted above, it is necessary to
specify the location of the beam centre on the detector in terms
of the origin of the detector, which is, of course, not coincident
with the centre of the sample.
The unit cell, reciprocal cell and crystallographic orthogonal
Cartesian coordinate system are defined by the CELL and the matrices
in the ATOM_SITES category.
<b>THE DIRECT LATTICE (FRACTIONAL COORDINATES)</b>
The direct lattice coordinate system is a system of fractional
coordinates aligned to the crystal, rather than to the laboratory.
This is a natural coordinate system for maps and atomic coordinates.
It is the simplest coordinate system in which to apply symmetry.
The axes are determined by the cell edges, and are not necessarily
othogonal. This coordinate system is not uniquely defined and
depends on the cell parameters in the CELL category and the
settings chosen to index the crystal.
Molecules in a crystal studied by X-ray diffracraction are organized
into a repeating regular array of unit cells. Each unit cell is defined
by three vectors, <b>a</b>, <b>b</b> and <b>c</b>. To quote from Drenth,
"The choice of the unit cell is not unique and therefore, guidelines
have been established for selecting the standard basis vectors and
the origin. They are based on symmetry and metric considerations:
"(1) The axial system should be right handed.
(2) The basis vectors should coincide as much as possible with
directions of highest symmetry."
(3) The cell taken should be the smallest one that satisfies
condition (2)
(4) Of all the lattice vectors, none is shorter than <b>a</b>.
(5) Of those not directed along <b>a</b>, none is shorter than <b>b</b>.
(6) Of those not lying in the <b>ab</b> plane, none is shorter than c.
(7) The three angles between the basis vectors <b>a</b>, <b>b</b> and <b>c</b> are
either all acute (<90°) or all obtuse (≥90°)."
These rules do not produce a unique result that is stable under
the assumption of experimental errors, and the the resulting cell
may not be primitive.
In this coordinate system, the vector (.5, .5, .5) is in the middle
of the given unit cell.
Grid coordinates are an important variation on fractional coordinates
used when working with maps. In imgCIF, the conversion from
fractional to grid coordinates is implicit in the array indexing
specified by _array_structure_list.dimension. Note that this
implicit grid-coordinate scheme is 1-based, not zero-based, i.e.
the origin of the cell for axes along the cell edges with no
specified _array_structure_list_axis.displacement will have
grid coordinates of (1,1,1), i.e. array indices of (1,1,1).
<b>THE ORTHOGONAL CARTESIAN COORDINATE SYSTEM (REAL SPACE)</b>
The orthogonal Cartesian coordinate system is a transformation of
the direct lattice to the actual physical coordinates of atoms in
space. It is similar to the laboratory coordinate system, but
is anchored to and moves with the crystal, rather than being
schored to the laboratory. The transformation from fractional
to orthogonal cartesian coordinates is given by the
_atom_sites.Cartn_transf_matrix[i][j] and
_atom_sites.Cartn_transf_vector[i]
tags. A common choice for the matrix of the transformation is
given in the 1992 PDB format document
| a b cos(γ) c cos(β) |
| 0 b sin(γ) c (cos(α) - cos(β)cos(γ))/sin(γ) |
| 0 0 V/(a b sin(γ)) |
This is a convenient coordinate system in which to do fitting
of models to maps and in which to understand the chemistry of
a molecule.
<b>THE RECIPROCAL LATTICE</b>
The reciprocal lattice coordinate system is used for diffraction
intensitities. It is based on the reciprocal cell, the dual of the cell,
in which reciprocal cell edges are derived from direct cell faces:
a* = bc sin(α)/V b* = ac sin(β)/V c* = ab sin(γ)/V
cos(α*) = (cos(β) cos(γ) - cos(α))/(sin(β) sin(γ))
cos(β*) = (cos(γ) cos(γ) - cos(β) )/(sin(α) sin(γ))
cos(γ*) = (cos(α) cos(β) - cos(γ))/(sin(α) sin(β))
V = abc √(1 - cos(α)<sup>2</sup> - cos(β)<sup>2</sup> - cos(γ)<sup>2</sup>
+ 2 cos(α) cos(β) cos(γ) )
In this form the dimensions of the reciprocal lattice are in reciprocal
Ångstroms (&A<sup>-1</sup>). A dimensionless form can be obtained by
multiplying by the wavelength. Reflections are commonly indexed against
this coordinate system as (h, k, l) triples.
References:
Drenth, J., "Introduction to basic crystallography." chapter
2.1 in Rossmann, M. G. and Arnold, E. "Crystallography of
biological macromolecules", Volume F of the IUCr's "International
tables for crystallography", Kluwer, Dordrecht 2001, pp 44 -- 63
Leslie, A. G. W. and Powell, H. (2004). MOSFLM v6.11.
MRC Laboratory of Molecular Biology, Hills Road, Cambridge, England.
http://www.CCP4.ac.uk/dist/<b>X</b>-windows/Mosflm/.
Stout, G. H. and Jensen, L. H., "X-ray structure determination",
2nd ed., Wiley, New York, 1989, 453 pp.
__, "PROTEIN DATA BANK ATOMIC COORDINATE AND BIBLIOGRAPHIC ENTRY
FORMAT DESCRIPTION," Brookhaven National Laboratory, February 1992.
;
_category.id axis
_category.mandatory_code no
loop_
_category_key.name '<a href="#_axis.id" >_axis.id</a>'
'_axis.equipment'
loop_
_category_group.id 'inclusive_group'
'axis_group'
'diffrn_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 -
This example shows the axis specification of the axes of a kappa-
geometry goniometer [see Stout, G. H. & Jensen, L. H. (1989). X-ray
structure determination. A practical
guide, 2nd ed. p. 134. New York: Wiley Interscience].
There are three axes specified, and no offsets. The outermost axis,
omega, is pointed along the <b>X</b> axis. The next innermost axis, kappa,
is at a 50 degree angle to the <b>X</b> axis, pointed away from the source.
The innermost axis, phi, aligns with the <b>X</b> axis when omega and
phi are at their zero points. If T-omega, T-kappa and T-phi
are the transformation matrices derived from the axis settings,
the complete transformation would be:
<b>X</b>' = (T-omega) (T-kappa) (T-phi) <b>X</b>
;
;
loop_
<a href="#_axis.id" >_axis.id</a>
<a href="#_axis.type" >_axis.type</a>
<a href="#_axis.equipment" >_axis.equipment</a>
<a href="#_axis.depends_on" >_axis.depends_on</a>
<a href="#_axis.vector[1]" >_axis.vector[1]</a> <a href="#_axis.vector[2]" >_axis.vector[2]</a> <a href="#_axis.vector[3]" >_axis.vector[3]</a>
omega rotation goniometer . 1 0 0
kappa rotation goniometer omega -.64279 0 -.76604
phi rotation goniometer kappa 1 0 0
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 2 -
This example shows the axis specification of the axes of a
detector, source and gravity. The order has been changed as a
reminder that the ordering of presentation of tokens is not
significant. The centre of rotation of the detector has been taken
to be 68 millimetres in the direction away from the source.
;
;
loop_
<a href="#_axis.id" >_axis.id</a>
<a href="#_axis.type" >_axis.type</a>
<a href="#_axis.equipment" >_axis.equipment</a>
<a href="#_axis.depends_on" >_axis.depends_on</a>
<a href="#_axis.vector[1]" >_axis.vector[1]</a> <a href="#_axis.vector[2]" >_axis.vector[2]</a> <a href="#_axis.vector[3]" >_axis.vector[3]</a>
<a href="#_axis.offset[1]">_axis.offset[1]</a> <a href="#_axis.offset[2]">_axis.offset[2]</a> <a href="#_axis.offset[3]">_axis.offset[3]</a>
source . source . 0 0 1 . . .
gravity . gravity . 0 -1 0 . . .
tranz translation detector rotz 0 0 1 0 0 -68
twotheta rotation detector . 1 0 0 . . .
roty rotation detector twotheta 0 1 0 0 0 -68
rotz rotation detector roty 0 0 1 0 0 -68
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 3 -
This example show the axis specification of the axes for a map,
using fractional coordinates. Each cell edge has been divided
into a grid of 50 divisions in the ARRAY_STRUCTURE_LIST_AXIS
category. The map is using only the first octant of the grid
in the ARRAY_STRUCTURE_LIST category.
The fastest changing axis is the gris along A, then along B,
and the slowest is along C.
The map sampling is being done in the middle of each grid
division
;
;
loop_
<a href="#_axis.id" >_axis.id</a>
<a href="#_axis.system">_axis.system</a>
<a href="#_axis.vector[1]" >_axis.vector[1]</a> <a href="#_axis.vector[2]" >_axis.vector[2]</a> <a href="#_axis.vector[3]" >_axis.vector[3]</a>
CELL_A_AXIS fractional 1 0 0
CELL_B_AXIS fractional 0 1 0
CELL_C_AXIS fractional 0 0 1
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_id
MAP 1 25 1 increasing CELL_A_AXIS
MAP 1 25 2 increasing CELL_B_AXIS
MAP 1 25 3 increasing CELL_C_AXIS
loop_
_array_structure_list_axis.axis_id
_array_structure_list_axis.fract_displacement
_array_structure_list_axis.fract_displacement_increment
CELL_A_AXIS 0.01 0.02
CELL_B_AXIS 0.01 0.02
CELL_C_AXIS 0.01 0.02
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 4 -
This example show the axis specification of the axes for a map,
this time as orthogonal Angstroms, using the same coordinate system
as for the atomic coordinates. The map is sampling every 1.5
Angstroms (1.5e-7 millimeters) in a map segment 37.5 Angstroms on
a side.
;
;
loop_
<a href="#_axis.id" >_axis.id</a>
<a href="#_axis.system">_axis.system</a>
<a href="#_axis.vector[1]" >_axis.vector[1]</a> <a href="#_axis.vector[2]" >_axis.vector[2]</a> <a href="#_axis.vector[3]" >_axis.vector[3]</a>
X orthogonal 1 0 0
Y orthogonal 0 1 0
Z orthogonal 0 0 1
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_id
MAP 1 25 1 increasing X
MAP 2 25 2 increasing Y
MAP 3 25 3 increasing Z
loop_
_array_structure_list_axis.axis_id
_array_structure_list_axis.displacement
_array_structure_list_axis.displacement_increment
X 7.5e-8 1.5e-7
Y 7.5e-8 1.5e-7
Z 7.5e-8 1.5e-7
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_axis.depends_on" >_axis.depends_on</a>
_item_description.description
; The value of <a href="#_axis.depends_on" >_axis.depends_on</a> specifies the next outermost
axis upon which this axis depends.
This item is a pointer to <a href="#_axis.id">_axis.id</a> in the same category.
;
_item.name '<a href="#_axis.depends_on">_axis.depends_on</a>'
_item.category_id axis
_item.mandatory_code no
save_
save_<a name="_axis.equipment" >_axis.equipment</a>
_item_description.description
; The value of <a href="#_axis.equipment" >_axis.equipment</a> specifies the type of
equipment using the axis: 'goniometer', 'detector',
'gravity', 'source' or 'general'.
;
_item.name '<a href="#_axis.equipment">_axis.equipment</a>'
_item.category_id axis
_item.mandatory_code no
_item_type.code ucode
_item_default.value general
loop_
_item_enumeration.value
_item_enumeration.detail goniometer
'equipment used to orient or position samples'
detector
'equipment used to detect reflections'
general
'equipment used for general purposes'
gravity
'axis specifying the downward direction'
source
'axis specifying the direction sample to source'
save_
save_<a name="_axis.offset[1]" >_axis.offset[1]</a>
_item_description.description
; The [1] element of the three-element vector used to specify
the offset to the base of a rotation or translation axis.
The vector is specified in millimetres.
;
_item.name '<a href="#_axis.offset[1]">_axis.offset[1]</a>'
_item.category_id axis
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
_item_units.code millimetres
save_
save_<a name="_axis.offset[2]" >_axis.offset[2]</a>
_item_description.description
; The [2] element of the three-element vector used to specify
the offset to the base of a rotation or translation axis.
The vector is specified in millimetres.
;
_item.name '<a href="#_axis.offset[2]">_axis.offset[2]</a>'
_item.category_id axis
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
_item_units.code millimetres
save_
save_<a name="_axis.offset[3]" >_axis.offset[3]</a>
_item_description.description
; The [3] element of the three-element vector used to specify
the offset to the base of a rotation or translation axis.
The vector is specified in millimetres.
;
_item.name '<a href="#_axis.offset[3]">_axis.offset[3]</a>'
_item.category_id axis
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
_item_units.code millimetres
save_
save_<a name="_axis.id" >_axis.id</a></a>
_item_description.description
; The value of <a href="#_axis.id" >_axis.id</a> must uniquely identify
each axis relevant to the experiment. Note that multiple
pieces of equipment may share the same axis (e.g. a twotheta
arm), so the category key for <a href="#AXIS">AXIS</a> also includes the
equipment.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_axis.id" >_axis.id</a>' axis yes
'<a href="#_array_structure_list_axis.axis_id" >_array_structure_list_axis.axis_id</a>'
array_structure_list_axis
yes
'<a href="#_diffrn_detector_axis.axis_id" >_diffrn_detector_axis.axis_id</a>' diffrn_detector_axis yes
'<a href="#_diffrn_measurement_axis.axis_id" >_diffrn_measurement_axis.axis_id</a>' diffrn_measurement_axis yes
'<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>' diffrn_scan_axis yes
'<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>' diffrn_scan_frame_axis yes
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_axis.depends_on" >_axis.depends_on</a>' '<a href="#_axis.id" >_axis.id</a>'
'<a href="#_array_structure_list_axis.axis_id" >_array_structure_list_axis.axis_id</a>' '<a href="#_axis.id" >_axis.id</a>'
'<a href="#_diffrn_detector_axis.axis_id" >_diffrn_detector_axis.axis_id</a>' '<a href="#_axis.id" >_axis.id</a>'
'<a href="#_diffrn_measurement_axis.axis_id" >_diffrn_measurement_axis.axis_id</a>' '<a href="#_axis.id" >_axis.id</a>'
'<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>' '<a href="#_axis.id" >_axis.id</a>'
'<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>' '<a href="#_axis.id" >_axis.id</a>'
save_
save_<a name="_axis.system" >_axis.system</a>
_item_description.description
; The value of <a href="#_axis.system" >_axis.system</a> specifies the coordinate
system used to define the axis: 'laboratory', 'direct', 'orthogonal',
'reciprocal' or 'abstract'.
;
_item.name '<a href="#_axis.system">_axis.system</a>'
_item.category_id axis
_item.mandatory_code no
_item_type.code ucode
_item_default.value laboratory
loop_
_item_enumeration.value
_item_enumeration.detail
laboratory
; the axis is referenced to the imgCIF standard laboratory Cartesian
coordinate system
;
direct
; the axis is referenced to the direct lattice
;
orthogonal
; the axis is referenced to the cell Cartesian orthogonal coordinates
;
reciprocal
; the axis is referenced to the reciprocal lattice
;
abstract
; the axis is referenced to abstract Cartesian cooridinate system
;
save_
save_<a name="_axis.type" >_axis.type</a>
_item_description.description
; The value of <a href="#_axis.type" >_axis.type</a> specifies the type of
axis: 'rotation' or 'translation' (or 'general' when
the type is not relevant, as for gravity).
;
_item.name '<a href="#_axis.type">_axis.type</a>'
_item.category_id axis
_item.mandatory_code no
_item_type.code ucode
_item_default.value general
loop_
_item_enumeration.value
_item_enumeration.detail rotation
'right-handed axis of rotation'
translation
'translation in the direction of the axis'
general
'axis for which the type is not relevant'
save_
save_<a name="_axis.vector[1]" >_axis.vector[1]</a>
_item_description.description
; The [1] element of the three-element vector used to specify
the direction of a rotation or translation axis.
The vector should be normalized to be a unit vector and
is dimensionless.
;
_item.name '<a href="#_axis.vector[1]" >_axis.vector[1]</a>'
_item.category_id axis
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
save_
save_<a name="_axis.vector[2]" >_axis.vector[2]</a>
_item_description.description
; The [2] element of the three-element vector used to specify
the direction of a rotation or translation axis.
The vector should be normalized to be a unit vector and
is dimensionless.
;
_item.name '<a href="#_axis.vector[2]" >_axis.vector[2]</a>'
_item.category_id axis
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
save_
save_<a name="_axis.vector[3]" >_axis.vector[3]</a>
_item_description.description
; The [3] element of the three-element vector used to specify
the direction of a rotation or translation axis.
The vector should be normalized to be a unit vector and
is dimensionless.
;
_item.name '<a href="#_axis.vector[3]" >_axis.vector[3]</a>'
_item.category_id axis
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
save_
#####################
# <a name="DIFFRN_DATA_FRAME" >DIFFRN_DATA_FRAME</a> #
#####################
save_DIFFRN_DATA_FRAME
_category.description
; Data items in the <a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category record
the details about each frame of data.
The items in this category were previously in a
DIFFRN_FRAME_DATA category, which is now deprecated.
The items from the old category are provided
as aliases but should not be used for new work.
;
_category.id diffrn_data_frame
_category.mandatory_code no
loop_
_category_key.name '<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>'
'<a href="#_diffrn_data_frame.detector_element_id" >_diffrn_data_frame.detector_element_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - A frame containing data from 4 frame elements.
Each frame element has a common array configuration
'array_1' described in <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> and related
categories. The data for each detector element are
stored in four groups of binary data in the
<a href="#ARRAY_DATA">ARRAY_DATA</a> category, linked by the array_id and
binary_id.
;
;
loop_
<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>
<a href="#_diffrn_data_frame.detector_element_id" >_diffrn_data_frame.detector_element_id</a>
<a href="#_diffrn_data_frame.array_id" >_diffrn_data_frame.array_id</a>
<a href="#_diffrn_data_frame.binary_id" >_diffrn_data_frame.binary_id</a>
frame_1 d1_ccd_1 array_1 1
frame_1 d1_ccd_2 array_1 2
frame_1 d1_ccd_3 array_1 3
frame_1 d1_ccd_4 array_1 4
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_diffrn_data_frame.array_id" >_diffrn_data_frame.array_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
;
_item.name '<a href="#_diffrn_data_frame.array_id" >_diffrn_data_frame.array_id</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code implicit
_item_aliases.alias_name '_diffrn_frame_data.array_id'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.0
_item_type.code code
save_
save_<a name="_diffrn_data_frame.binary_id" >_diffrn_data_frame.binary_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_data.binary_id" >_array_data.binary_id</a> in the
<a href="#ARRAY_DATA">ARRAY_DATA</a> category.
;
_item.name '<a href="#_diffrn_data_frame.binary_id" >_diffrn_data_frame.binary_id</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code implicit
_item_aliases.alias_name '_diffrn_frame_data.binary_id'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.0
_item_type.code int
save_
save_<a name="_diffrn_data_frame.center_fast">_diffrn_data_frame.center_fast</a>
_item_description.description
; The value of <a href="#_diffrn_data_frame.center_fast">_diffrn_data_frame.center_fast</a> is
the fast index axis beam center position relative to the detector
element face in the units specified in the data item
'<a href="#_diffrn_data_frame.center_units">_diffrn_data_frame.center_units</a>' along the fast
axis of the detector from the center of the first pixel to
the point at which the Z-axis (which should be colinear with the
beam) intersects the face of the detector, if in fact is does.
At the time of the measurement the current setting of detector
positioner given frame are used.
It is important to note that for measurements in millimetres,
the sense of the axis is used, rather than the sign of the
pixel-to-pixel increments.
;
_item.name '<a href="#_diffrn_data_frame.center_fast">_diffrn_data_frame.center_fast</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code no
_item_type.code float
save_
save_<a name="_diffrn_data_frame.center_slow">_diffrn_data_frame.center_slow</a>
_item_description.description
; The value of <a href="#_diffrn_data_frame.center_slow">_diffrn_data_frame.center_slow</a> is
the slow index axis beam center position relative to the detector
element face in the units specified in the data item
'<a href="#_diffrn_data_frame.center_units">_diffrn_data_frame.center_units</a>' along the slow
axis of the detector from the center of the first pixel to
the point at which the Z-axis (which should be colinear with the
beam) intersects the face of the detector, if in fact is does.
At the time of the measurement the current setting of detector
positioner given frame are used.
It is important to note that the sense of the axis is used,
rather than the sign of the pixel-to-pixel increments.
;
_item.name '<a href="#_diffrn_data_frame.center_slow">_diffrn_data_frame.center_slow</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code no
_item_type.code float
save_
save_<a name="_diffrn_data_frame.center_units">_diffrn_data_frame.center_units</a>
_item_description.description
; The value of <a href="#_diffrn_data_frame.center_units">_diffrn_data_frame.center_units</a>
specifies the units in which the values of
'<a href="#_diffrn_data_frame.center_fast">_diffrn_data_frame.center_fast</a>' and
'<a href="#_diffrn_data_frame.center_slow">_diffrn_data_frame.center_slow</a>'
are presented. The default is 'mm' for millimetres. The
alternatives are 'pixels' and 'bins'. In all cases the
center distances are measured from the center of the
first pixel, i.e. in a 2x2 binning, the measuring origin
is offset from the centers of the bins by one half pixel
towards the first pixel.
If 'bins' is specified, the data in
'<a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>',
'<a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a>', and
'<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>'
is used to define the binning scheme.
;
_item.name '<a href="#_diffrn_data_frame.center_units">_diffrn_data_frame.center_units</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code no
_item_type.code code
loop_
_ item_enumeration.value
_ item_enumeration.detail
mm 'millimetres'
pixels 'detector pixels'
bins 'detector bins'
save_
save_<a name="_diffrn_data_frame.detector_element_id" >_diffrn_data_frame.detector_element_id</a>
_item_description.description
; This item is a pointer to <a href="#_diffrn_detector_element.id">_diffrn_detector_element.id</a>
in the <a href="#DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a> category.
;
_item.name '<a href="#_diffrn_data_frame.detector_element_id" >_diffrn_data_frame.detector_element_id</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code yes
_item_aliases.alias_name '_diffrn_frame_data.detector_element_id'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.0
_item_type.code code
save_
save_<a name="_diffrn_data_frame.id" >_diffrn_data_frame.id</a>
_item_description.description
; The value of <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a> must uniquely identify
each complete frame of data.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>' diffrn_data_frame yes
'<a href="#_diffrn_refln.frame_id" >_diffrn_refln.frame_id</a>' diffrn_refln yes
'<a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>' diffrn_scan yes
'<a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>' diffrn_scan yes
'<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>' diffrn_scan_frame yes
'<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>'
diffrn_scan_frame_axis
yes
_item_aliases.alias_name '_diffrn_frame_data.id'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.0
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_refln.frame_id" >_diffrn_refln.frame_id</a>' '<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>'
'<a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>' '<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>'
'<a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>' '<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>'
'<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>' '<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>'
'<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>'
'<a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>'
save_
save_<a name="_diffrn_data_frame.details" >_diffrn_data_frame.details</a>
_item_description.description
; The value of <a href="#_diffrn_data_frame.details" >_diffrn_data_frame.details</a> should give a
description of special aspects of each frame of data.
This is an appropriate location in which to record
information from vendor headers as presented in those
headers, but it should never be used as a substitute
for providing the fully parsed information within
the appropriate imgCIF/CBF categories.
Normally, when a conversion from a miniCBF has been done
the data from '<a href="#_array_data.header_convention">_array_data.header_convention</a>'
should be transferred to this data item and
'<a href="#_array_data.header_convention">_array_data.header_convention</a>'
should be removed.
;
_item.name '<a name="_diffrn_data_frame.details" >_diffrn_data_frame.details</a>'
_item.category_id diffrn_data_frame
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_frame_data.details'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.4
_item_type.code text
loop_
_item_examples.case
_item_examples.detail
;
HEADER_BYTES = 512;
DIM = 2;
BYTE_ORDER = big_endian;
TYPE = unsigned_short;
SIZE1 = 3072;
SIZE2 = 3072;
PIXEL_SIZE = 0.102588;
BIN = 2x2;
DETECTOR_SN = 901;
TIME = 29.945155;
DISTANCE = 200.000000;
PHI = 85.000000;
OSC_START = 85.000000;
OSC_RANGE = 1.000000;
WAVELENGTH = 0.979381;
BEAM_CENTER_X = 157.500000;
BEAM_CENTER_Y = 157.500000;
PIXEL SIZE = 0.102588;
OSCILLATION RANGE = 1;
EXPOSURE TIME = 29.9452;
TWO THETA = 0;
BEAM CENTRE = 157.5 157.5;
;
; Example of header information extracted from an ADSC Quantum
315 detector header by CBFlib_0.7.6. Image provided by Chris
Nielsen of ADSC from a data collection at SSRL beamline 1-5.
;
save_
##########################################################################
# The following is a restatement of the mmCIF <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a>, #
# <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> and <a href="#DIFFRN_RADIATION">DIFFRN_RADIATION</a> categories, modified for #
# the CBF/imgCIF extensions #
##########################################################################
###################
# <a name="DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> #
###################
save_DIFFRN_DETECTOR
_category.description
; Data items in the <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> category describe the
detector used to measure the scattered radiation, including
any analyser and post-sample collimation.
;
_category.id diffrn_detector
_category.mandatory_code no
loop_
_category_key.name '<a href="#_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a>'
'<a href="#_diffrn_detector.id" >_diffrn_detector.id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - based on PDB entry 5HVP and laboratory records for the
structure corresponding to PDB entry 5HVP.
;
;
<a href="#_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a> 'd1'
<a href="#_diffrn_detector.detector" >_diffrn_detector.detector</a> 'multiwire'
<a href="#_diffrn_detector.type" >_diffrn_detector.type</a> 'Siemens'
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_diffrn_detector.details" >_diffrn_detector.details</a>
_item_description.description
; A description of special aspects of the radiation detector.
;
_item.name '<a href="#_diffrn_detector.details" >_diffrn_detector.details</a>'
_item.category_id diffrn_detector
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_detector_details'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
_item_examples.case 'slow mode'
save_
save_<a name="_diffrn_detector.detector" >_diffrn_detector.detector</a>
_item_description.description
; The general class of the radiation detector.
;
_item.name '<a href="#_diffrn_detector.detector" >_diffrn_detector.detector</a>'
_item.category_id diffrn_detector
_item.mandatory_code no
loop_
_item_aliases.alias_name
_item_aliases.dictionary
_item_aliases.version '_diffrn_radiation_detector'
cifdic.c91
1.0
'_diffrn_detector'
cif_core.dic
2.0
_item_type.code text
loop_
_item_examples.case 'photographic film'
'scintillation counter'
'CCD plate'
'BF~3~ counter'
save_
save_<a name="_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn.id">_diffrn.id</a> in the DIFFRN
category.
The value of <a href="#_diffrn.id">_diffrn.id</a> uniquely defines a set of
diffraction data.
;
_item.name '<a href="#_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a>'
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_detector.dtime" >_diffrn_detector.dtime</a>
_item_description.description
; The deadtime in microseconds of the detector(s) used to
measure the diffraction intensities.
;
_item.name '<a href="#_diffrn_detector.dtime" >_diffrn_detector.dtime</a>'
_item.category_id diffrn_detector
_item.mandatory_code no
loop_
_item_aliases.alias_name
_item_aliases.dictionary
_item_aliases.version '_diffrn_radiation_detector_dtime'
cifdic.c91
1.0
'_diffrn_detector_dtime'
cif_core.dic
2.0
loop_
_item_range.maximum
_item_range.minimum . 0.0
0.0 0.0
_item_type.code float
_item_units.code microseconds
save_
save_<a name="_diffrn_detector.id" >_diffrn_detector.id</a>
_item_description.description
; The value of <a href="#_diffrn_detector.id" >_diffrn_detector.id</a> must uniquely identify
each detector used to collect each diffraction data set.
If the value of <a href="#_diffrn_detector.id" >_diffrn_detector.id</a> is not given, it is
implicitly equal to the value of
<a href="#_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a>.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_detector.id" >_diffrn_detector.id</a>' diffrn_detector implicit
'<a href="#_diffrn_detector_axis.detector_id" >_diffrn_detector_axis.detector_id</a>'
diffrn_detector_axis yes
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_detector_axis.detector_id" >_diffrn_detector_axis.detector_id</a>'
'_diffrn_detector.id'
_item_type.code code
save_
save_<a name="_diffrn_detector.number_of_axes" >_diffrn_detector.number_of_axes</a>
_item_description.description
; The value of <a href="#_diffrn_detector.number_of_axes" >_diffrn_detector.number_of_axes</a> gives the
number of axes of the positioner for the detector identified
by <a href="#_diffrn_detector.id" >_diffrn_detector.id</a>.
The word 'positioner' is a general term used in
instrumentation design for devices that are used to change
the positions of portions of apparatus by linear
translation, rotation or combinations of such motions.
Axes which are used to provide a coordinate system for the
face of an area detetctor should not be counted for this
data item.
The description of each axis should be provided by entries
in <a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a>.
;
_item.name '<a href="#_diffrn_detector.number_of_axes" >_diffrn_detector.number_of_axes</a>'
_item.category_id diffrn_detector
_item.mandatory_code no
loop_
_item_range.maximum
_item_range.minimum . 1
1 1
_item_type.code int
save_
save_<a name="_diffrn_detector.type" >_diffrn_detector.type</a>
_item_description.description
; The make, model or name of the detector device used.
;
_item.name '<a href="#_diffrn_detector.type" >_diffrn_detector.type</a>'
_item.category_id diffrn_detector
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_detector_type'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
save_
########################
# <a name="DIFFRN_DETECTOR_AXIS" >DIFFRN_DETECTOR_AXIS</a> #
########################
save_DIFFRN_DETECTOR_AXIS
_category.description
; Data items in the <a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a> category associate
axes with detectors.
;
_category.id diffrn_detector_axis
_category.mandatory_code no
loop_
_category_key.name '<a href="#_diffrn_detector_axis.detector_id" >_diffrn_detector_axis.detector_id</a>'
'_diffrn_detector_axis.axis_id'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
save_
save_<a name="_diffrn_detector_axis.axis_id" >_diffrn_detector_axis.axis_id</a>
_item_description.description
; This data item is a pointer to <a href="#_axis.id" >_axis.id</a> in
the AXIS category.
;
_item.name '<a href="#_diffrn_detector_axis.axis_id">_diffrn_detector_axis.axis_id</a>'
_item.category_id diffrn_detector_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_detector_axis.detector_id" >_diffrn_detector_axis.detector_id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn_detector.id" >_diffrn_detector.id</a> in
the <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> category.
This item was previously named _diffrn_detector_axis.id
which is now a deprecated name. The old name is
provided as an alias but should not be used for new work.
;
_item.name '<a href="#_diffrn_detector_axis.detector_id" >_diffrn_detector_axis.detector_id</a>'
_item.category_id diffrn_detector_axis
_item.mandatory_code yes
_item_aliases.alias_name '_diffrn_detector_axis.id'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.0
_item_type.code code
save_
###########################
# <a name="DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a> #
###########################
save_DIFFRN_DETECTOR_ELEMENT
_category.description
; Data items in the <a href="#DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a> category record
the details about spatial layout and other characteristics
of each element of a detector which may have multiple elements.
In most cases, giving more detailed information
in <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a> and <a href="#ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a>
is preferable to simply providing the centre of the
detector element.
;
_category.id diffrn_detector_element
_category.mandatory_code no
loop_
_category_key.name '<a href="#_diffrn_detector_element.id" >_diffrn_detector_element.id</a>'
'<a href="#_diffrn_detector_element.detector_id" >_diffrn_detector_element.detector_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - Detector d1 is composed of four CCD detector elements,
each 200 mm by 200 mm, arranged in a square, in the pattern
1 2
*
3 4
Note that the beam centre is slightly displaced from each of the
detector elements, just beyond the lower right corner of 1,
the lower left corner of 2, the upper right corner of 3 and
the upper left corner of 4. For each element, the detector
face coordiate system, is assumed to have the fast axis
running from left to right and the slow axis running from
top to bottom with the origin at the top left corner.
;
;
loop_
<a href="#_diffrn_detector_element.detector_id" >_diffrn_detector_element.detector_id</a>
<a href="#_diffrn_detector_element.id" >_diffrn_detector_element.id</a>
<a href="#_diffrn_data_frame.center_fast" >_diffrn_detector_element.reference_center_fast</a>
<a href="#_diffrn_detector_element.reference_center_slow" >_diffrn_detector_element.reference_center_slow</a>
<a href="#_diffrn_detector_element.reference_center_units" >_diffrn_detector_element.reference_center_units</a>
d1 d1_ccd_1 201.5 201.5 mm
d1 d1_ccd_2 -1.8 201.5 mm
d1 d1_ccd_3 201.6 -1.4 mm
d1 d1_ccd_4 -1.7 -1.5 mm
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_diffrn_detector_element.id" >_diffrn_detector_element.id</a>
_item_description.description
; The value of <a href="#_diffrn_detector_element.id" >_diffrn_detector_element.id</a> must uniquely
identify each element of a detector.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_detector_element.id" >_diffrn_detector_element.id</a>'
diffrn_detector_element
yes
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_data_frame.detector_element_id" >_diffrn_data_frame.detector_element_id</a>'
'<a href="#_diffrn_detector_element.id" >_diffrn_detector_element.id</a>'
save_
save_<a name="_diffrn_detector_element.detector_id" >_diffrn_detector_element.detector_id</a>
_item_description.description
; This item is a pointer to <a href="#_diffrn_detector.id" >_diffrn_detector.id</a>
in the <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> category.
;
_item.name '<a href="#_diffrn_detector_element.detector_id" >_diffrn_detector_element.detector_id</a>'
_item.category_id diffrn_detector_element
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_detector_element.reference_center_fast">_diffrn_detector_element.reference_center_fast</a>
_item_description.description
; The value of <a href="#_diffrn_detector_element.reference_center_fast">_diffrn_detector_element.reference_center_fast</a> is
the fast index axis beam center position relative to the detector
element face in the units specified in the data item
'<a href="#_diffrn_detector_element.reference_center_units">_diffrn_detector_element.reference_center_units</a>' along the fast
axis of the detector from the center of the first pixel to
the point at which the Z-axis (which should be colinear with the
beam) intersects the face of the detector, if in fact is does.
At the time of the measurement all settings of the detector
positioner should be at their reference settings. If more than
one reference setting has been used the value given whould be
representive of the beam center as determined from the ensemble
of settings.
It is important to note that for measurements in millimetres,
the sense of the axis is used, rather than the sign of the
pixel-to-pixel increments.
;
_item.name '<a href="#_diffrn_detector_element.reference_center_fast">_diffrn_detector_element.reference_center_fast</a>'
_item.category_id diffrn_detector_element
_item.mandatory_code no
_item_type.code float
save_
save_<a name="_diffrn_detector_element.reference_center_slow">_diffrn_detector_element.reference_center_slow</a>
_item_description.description
; The value of <a href="#_diffrn_detector_element.reference_center_slow">_diffrn_detector_element.reference_center_slow</a> is
the slow index axis beam center position relative to the detector
element face in the units specified in the data item
'<a href="#_diffrn_detector_element.reference_center_units">_diffrn_detector_element.reference_center_units</a>' along the slow
axis of the detector from the center of the first pixel to
the point at which the Z-axis (which should be colinear with the
beam) intersects the face of the detector, if in fact is does.
At the time of the measurement all settings of the detector
positioner should be at their reference settings. If more than
one reference setting has been used the value givien whould be
representive of the beam center as determined from the ensemble
of settings.
It is important to note that the sense of the axis is used,
rather than the sign of the pixel-to-pixel increments.
;
_item.name '<a href="#_diffrn_detector_element.reference_center_slow">_diffrn_detector_element.reference_center_slow</a>'
_item.category_id diffrn_detector_element
_item.mandatory_code no
_item_type.code float
save_
save_<a name="_diffrn_detector_element.reference_center_units">_diffrn_detector_element.reference_center_units</a>
_item_description.description
; The value of <a href="#_diffrn_detector_element.reference_center_units">_diffrn_detector_element.reference_center_units</a>
specifies the units in which the values of
'<a href="#_diffrn_detector_element.reference_center_fast">_diffrn_detector_element.reference_center_fast</a>' and
'<a href="#_diffrn_detector_element.reference_center_slow">_diffrn_detector_element.reference_center_slow</a>'
are presented. The default is 'mm' for millimetres. The
alternatives are 'pixels' and 'bins'. In all cases the
center distances are measured from the center of the
first pixel, i.e. in a 2x2 binning, the measuring origin
is offset from the centers of the bins by one half pixel
towards the first pixel.
If 'bins' is specified, the data in
'<a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>',
'<a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a>', and
'<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>'
is used to define the binning scheme.
;
_item.name '<a href="#_diffrn_detector_element.reference_center_units">_diffrn_detector_element.reference_center_units</a>'
_item.category_id diffrn_detector_element
_item.mandatory_code no
_item_type.code code
loop_
_ item_enumeration.value
_ item_enumeration.detail
mm 'millimetres'
pixels 'detector pixels'
bins 'detector bins'
save_
########################
## <a name="DIFFRN_MEASUREMENT" >DIFFRN_MEASUREMENT</a> ##
########################
save_DIFFRN_MEASUREMENT
_category.description
; Data items in the <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> category record details
about the device used to orient and/or position the crystal
during data measurement and the manner in which the
diffraction data were measured.
;
_category.id diffrn_measurement
_category.mandatory_code no
loop_
_category_key.name '<a href="#_diffrn_measurement.device" >_diffrn_measurement.device</a>'
'<a href="#_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a>'
'<a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - based on PDB entry 5HVP and laboratory records for the
structure corresponding to PDB entry 5HVP
;
;
<a href="#_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a> 'd1'
<a href="#_diffrn_measurement.device" >_diffrn_measurement.device</a> '3-circle camera'
<a href="#_diffrn_measurement.device_type" >_diffrn_measurement.device_type</a> 'Supper model <b>X</b>'
<a href="#_diffrn_measurement.device_details" >_diffrn_measurement.device_details</a> 'none'
<a href="#_diffrn_measurement.method" >_diffrn_measurement.method</a> 'omega scan'
<a href="#_diffrn_measurement.details" >_diffrn_measurement.details</a>
; 440 frames, 0.20 degrees, 150 sec, detector distance 12 cm, detector
angle 22.5 degrees
;
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 2 - based on data set TOZ of Willis, Beckwith & Tozer
[Acta Cryst. (1991), C47, 2276-2277].
;
;
<a href="#_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a> 's1'
<a href="#_diffrn_measurement.device_type" >_diffrn_measurement.device_type</a> 'Philips PW1100/20 diffractometer'
<a href="#_diffrn_measurement.method" >_diffrn_measurement.method</a> 'theta/2theta (\q/2\q)'
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_diffrn_measurement.device" >_diffrn_measurement.device</a>
_item_description.description
; The general class of goniometer or device used to support
and orient the specimen.
If the value of <a href="#_diffrn_measurement.device">_diffrn_measurement.device</a> is not given,
it is implicitly equal to the value of
<a href="#_diffrn_measurement.diffrn_id">_diffrn_measurement.diffrn_id</a>.
Either <a href="#_diffrn_measurement.device">_diffrn_measurement.device</a> or
<a href="#_diffrn_measurement.id">_diffrn_measurement.id</a> may be used to link to other
categories. If the experimental setup admits multiple
devices, then <a href="#_diffrn_measurement.id">_diffrn_measurement.id</a> is used to provide
a unique link.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_measurement.device">_diffrn_measurement.device</a>' diffrn_measurement implicit
'<a href="#_diffrn_measurement_axis.measurement_device">_diffrn_measurement_axis.measurement_device</a>'
diffrn_measurement_axis implicit
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_measurement_axis.measurement_device">_diffrn_measurement_axis.measurement_device</a>'
'_diffrn_measurement.device'
_item_aliases.alias_name '_diffrn_measurement_device'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
loop_
_item_examples.case '3-circle camera'
'4-circle camera'
'kappa-geometry camera'
'oscillation camera'
'precession camera'
save_
save_<a name="_diffrn_measurement.device_details" >_diffrn_measurement.device_details</a>
_item_description.description
; A description of special aspects of the device used to
measure the diffraction intensities.
;
_item.name '<a href="#_diffrn_measurement.device_details" >_diffrn_measurement.device_details</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_measurement_device_details'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
_item_examples.case
; commercial goniometer modified locally to
allow for 90\% \t arc
;
save_
save_<a name="_diffrn_measurement.device_type" >_diffrn_measurement.device_type</a>
_item_description.description
; The make, model or name of the measurement device
(goniometer) used.
;
_item.name '<a href="#_diffrn_measurement.device_type" >_diffrn_measurement.device_type</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_measurement_device_type'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
loop_
_item_examples.case 'Supper model q'
'Huber model r'
'Enraf-Nonius model s'
'home-made'
save_
save_<a name="_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn.id">_diffrn.id</a> in the DIFFRN
category.
;
_item.name '<a href="#_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a>'
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_measurement.details" >_diffrn_measurement.details</a>
_item_description.description
; A description of special aspects of the intensity
measurement.
;
_item.name '<a href="#_diffrn_measurement.details" >_diffrn_measurement.details</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_measurement_details'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
_item_examples.case
; 440 frames, 0.20 degrees, 150 sec, detector
distance 12 cm, detector angle 22.5 degrees
;
save_
save_<a name="_diffrn_measurement.id" >_diffrn_measurement.id</a>
_item_description.description
; The value of <a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a> must uniquely identify
the set of mechanical characteristics of the device used to
orient and/or position the sample used during the collection
of each diffraction data set.
If the value of <a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a> is not given, it is
implicitly equal to the value of
<a href="#_diffrn_measurement.diffrn_id" >_diffrn_measurement.diffrn_id</a>.
Either <a href="#_diffrn_measurement.device">_diffrn_measurement.device</a> or
<a href="#_diffrn_measurement.id">_diffrn_measurement.id</a> may be used to link to other
categories. If the experimental setup admits multiple
devices, then <a href="#_diffrn_measurement.id">_diffrn_measurement.id</a> is used to provide
a unique link.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a>' diffrn_measurement implicit
'<a href="#_diffrn_measurement_axis.measurement_id" >_diffrn_measurement_axis.measurement_id</a>'
diffrn_measurement_axis implicit
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_measurement_axis.measurement_id" >_diffrn_measurement_axis.measurement_id</a>'
'<a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a>'
_item_type.code code
save_
save_<a name="_diffrn_measurement.method" >_diffrn_measurement.method</a>
_item_description.description
; Method used to measure intensities.
;
_item.name '<a href="#_diffrn_measurement.method" >_diffrn_measurement.method</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_measurement_method'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
_item_examples.case
'profile data from theta/2theta (\q/2\q) scans'
save_
save_<a name="_diffrn_measurement.number_of_axes" >_diffrn_measurement.number_of_axes</a>
_item_description.description
; The value of <a href="#_diffrn_measurement.number_of_axes" >_diffrn_measurement.number_of_axes</a> gives the
number of axes of the positioner for the goniometer or
other sample orientation or positioning device identified
by <a href="#_diffrn_measurement.id" >_diffrn_measurement.id</a>.
The description of the axes should be provided by entries in
<a href="#DIFFRN_MEASUREMENT_AXIS">DIFFRN_MEASUREMENT_AXIS</a>.
;
_item.name '<a href="#_diffrn_measurement.number_of_axes" >_diffrn_measurement.number_of_axes</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
loop_
_item_range.maximum
_item_range.minimum . 1
1 1
_item_type.code int
save_
# <a href="#_diffrn_measurement.sample_detector_distance" >_diffrn_measurement.sample_detector_distance</a>
# <a href="#_diffrn_measurement.sample_detector_voffset" >_diffrn_measurement.sample_detector_voffset</a>
save_<a name="_diffrn_measurement.sample_detector_distance" >_diffrn_measurement.sample_detector_distance</a>
_item_description.description
; The value of <a href="#_diffrn_measurement.sample_detector_distance" >_diffrn_measurement.sample_detector_distance</a> gives the
unsigned distance in millimetres from the sample to the
detector along the beam.
;
_item.name '<a href="#_diffrn_measurement.sample_detector_distance" >_diffrn_measurement.sample_detector_distance</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
loop_
_item_range.maximum
_item_range.minimum . 0.0
_item_type.code float
_item_units.code mm
save_
save_<a name="_diffrn_measurement.sample_detector_voffset" >_diffrn_measurement.sample_detector_voffset</a>
_item_description.description
; The value of <a href="#_diffrn_measurement.sample_detector_voffset" >_diffrn_measurement.sample_detector_voffset</a> gives the
signed distance in millimetres in the vertical
direction (positive for up) from the center of
the beam to the center of the detector.
;
_item.name '<a href="#_diffrn_measurement.sample_detector_voffset" >_diffrn_measurement.sample_detector_voffset</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
loop_
_item_range.maximum
_item_range.minimum . .
. .
_item_type.code float
_item_units.code mm
save_
save_<a name="_diffrn_measurement.specimen_support" >_diffrn_measurement.specimen_support</a>
_item_description.description
; The physical device used to support the crystal during data
collection.
;
_item.name '<a href="#_diffrn_measurement.specimen_support" >_diffrn_measurement.specimen_support</a>'
_item.category_id diffrn_measurement
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_measurement_specimen_support'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
loop_
_item_examples.case 'glass capillary'
'quartz capillary'
'fiber'
'metal loop'
save_
###########################
# <a name="DIFFRN_MEASUREMENT_AXIS">DIFFRN_MEASUREMENT_AXIS</a> #
###########################
save_DIFFRN_MEASUREMENT_AXIS
_category.description
; Data items in the <a href="#DIFFRN_MEASUREMENT_AXIS">DIFFRN_MEASUREMENT_AXIS</a> category associate
axes with goniometers.
;
_category.id diffrn_measurement_axis
_category.mandatory_code no
loop_
_category_key.name
'<a href="#_diffrn_measurement_axis.measurement_device" >_diffrn_measurement_axis.measurement_device</a>'
'<a href="#_diffrn_measurement_axis.measurement_id" >_diffrn_measurement_axis.measurement_id</a>'
'<a href="#_diffrn_measurement_axis.axis_id" >_diffrn_measurement_axis.axis_id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
save_
save_<a name="_diffrn_measurement_axis.axis_id" >_diffrn_measurement_axis.axis_id</a>
_item_description.description
; This data item is a pointer to <a href="#_axis.id" >_axis.id</a> in
the <a href="#AXIS">AXIS</a> category.
;
_item.name '<a href="#_diffrn_measurement_axis.axis_id" >_diffrn_measurement_axis.axis_id</a>'
_item.category_id diffrn_measurement_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<A name="_diffrn_measurement_axis.measurement_device">_diffrn_measurement_axis.measurement_device</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn_measurement.device">_diffrn_measurement.device</a>
in the <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> category.
;
_item.name
'<a href="#_diffrn_measurement_axis.measurement_device">_diffrn_measurement_axis.measurement_device</a>'
_item.category_id diffrn_measurement_axis
_item.mandatory_code implicit
_item_type.code text
save_
save_<a name="_diffrn_measurement_axis.measurement_id">_diffrn_measurement_axis.measurement_id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn_measurement.id">_diffrn_measurement.id</a> in
the <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> category.
This item was previously named _diffrn_measurement_axis.id,
which is now a deprecated name. The old name is
provided as an alias but should not be used for new work.
;
_item.name '<a href="#_diffrn_measurement_axis.measurement_id">_diffrn_measurement_axis.measurement_id</a>'
_item.category_id diffrn_measurement_axis
_item.mandatory_code implicit
_item_aliases.alias_name '_diffrn_measurement_axis.id'
_item_aliases.dictionary cif_img.dic
_item_aliases.version 1.0
_item_type.code code
save_
####################
# <a name="DIFFRN_RADIATION">DIFFRN_RADIATION</a> #
####################
save_DIFFRN_RADIATION
_category.description
; Data items in the <a href="#DIFFRN_RADIATION">DIFFRN_RADIATION</a> category describe
the radiation used for measuring diffraction intensities,
its collimation and monochromatization before the sample.
Post-sample treatment of the beam is described by data
items in the <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> category.
;
_category.id diffrn_radiation
_category.mandatory_code no
_category_key.name '<a href="#_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - based on PDB entry 5HVP and laboratory records for the
structure corresponding to PDB entry 5HVP
;
;
<a href="#_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a> 'set1'
<a href="#_diffrn_radiation.collimation">_diffrn_radiation.collimation</a> '0.3 mm double pinhole'
<a href="#_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a> 'graphite'
<a href="#_diffrn_radiation.type">_diffrn_radiation.type</a> 'Cu K\a'
<a href="#_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a> 1
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 2 - based on data set TOZ of Willis, Beckwith & Tozer
[Acta Cryst. (1991), C47, 2276-2277].
;
;
<a href="#_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a> 1
<a href="#_diffrn_radiation.type">_diffrn_radiation.type</a> 'Cu K\a'
<a href="#_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a> 'graphite'
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<A name="_diffrn_radiation.collimation">_diffrn_radiation.collimation</a>
_item_description.description
; The collimation or focusing applied to the radiation.
;
_item.name '<a href="#_diffrn_radiation.collimation">_diffrn_radiation.collimation</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_collimation'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
loop_
_item_examples.case '0.3 mm double-pinhole'
'0.5 mm'
'focusing mirrors'
save_
save_<A name="_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn.id">_diffrn.id</a> in the DIFFRN
category.
;
_item.name '<a href="#_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a>'
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_radiation.div_x_source">_diffrn_radiation.div_x_source</a>
_item_description.description
; Beam crossfire in degrees parallel to the laboratory <b>X</b> axis
(see <a href="#AXIS">AXIS</a> category).
This is a characteristic of the X-ray beam as it illuminates
the sample (or specimen) after all monochromation and
collimation.
This is the standard uncertainty (e.s.d.) of the directions of
photons in the XZ plane around the mean source beam
direction.
Note that for some synchrotrons this value is specified
in milliradians, in which case a conversion is needed.
To convert a value in milliradians to a value in degrees,
multiply by 0.180 and divide by \p.
;
_item.name '<a href="#_diffrn_radiation.div_x_source">_diffrn_radiation.div_x_source</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_type.code float
_item_units.code degrees
save_
save_<A name="_diffrn_radiation.div_y_source">_diffrn_radiation.div_y_source</a>
_item_description.description
; Beam crossfire in degrees parallel to the laboratory <b>Y</b> axis
(see <a href="#AXIS">AXIS</a> category).
This is a characteristic of the X-ray beam as it illuminates
the sample (or specimen) after all monochromation and
collimation.
This is the standard uncertainty (e.s.d.) of the directions
of photons in the YZ plane around the mean source beam
direction.
Note that for some synchrotrons this value is specified
in milliradians, in which case a conversion is needed.
To convert a value in milliradians to a value in degrees,
multiply by 0.180 and divide by \p.
;
_item.name '<a href="#_diffrn_radiation.div_y_source">_diffrn_radiation.div_y_source</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_type.code float
_item_units.code degrees
_item_default.value 0.0
save_
save_<A name="_diffrn_radiation.div_x_y_source">_diffrn_radiation.div_x_y_source</a>
_item_description.description
; Beam crossfire correlation degrees^<sup>2</sup>^ between the
crossfire laboratory <b>X</b>-axis component and the crossfire
laboratory <b>Y</b>-axis component (see <a href="#AXIS">AXIS</a> category).
This is a characteristic of the X-ray beam as it illuminates
the sample (or specimen) after all monochromation and
collimation.
This is the mean of the products of the deviations of the
direction of each photon in XZ plane times the deviations
of the direction of the same photon in the YZ plane
around the mean source beam direction. This will be zero
for uncorrelated crossfire.
Note that some synchrotrons, this value is specified in
milliradians^<sup>2</sup>^, in which case a conversion would be needed.
To go from a value in milliradians^<sup>2</sup>^ to a value in
degrees^<sup>2</sup>^, multiply by 0.180^<sup>2</sup>^ and divide by \p^<sup>2</sup>^.
;
_item.name '<a href="#_diffrn_radiation.div_x_y_source">_diffrn_radiation.div_x_y_source</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_type.code float
_item_units.code degrees_squared
_item_default.value 0.0
save_
save_<A name="_diffrn_radiation.filter_edge">_diffrn_radiation.filter_edge</a>
_item_description.description
; Absorption edge in \%Angstroms of the radiation filter used.
;
_item.name '<a href="#_diffrn_radiation.filter_edge">_diffrn_radiation.filter_edge</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_filter_edge'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
loop_
_item_range.maximum
_item_range.minimum . 0.0
0.0 0.0
_item_type.code float
_item_units.code angstroms
save_
save_<A name="_diffrn_radiation.inhomogeneity">_diffrn_radiation.inhomogeneity</a>
_item_description.description
; Half-width in millimetres of the incident beam in the
direction perpendicular to the diffraction plane.
;
_item.name '<a href="#_diffrn_radiation.inhomogeneity">_diffrn_radiation.inhomogeneity</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_inhomogeneity'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
loop_
_item_range.maximum
_item_range.minimum . 0.0
0.0 0.0
_item_type.code float
_item_units.code millimetres
save_
save_<A name="_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a>
_item_description.description
; The method used to obtain monochromatic radiation. If a
monochromator crystal is used, the material and the
indices of the Bragg reflection are specified.
;
_item.name '<a href="#_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_monochromator'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code text
loop_
_item_examples.case 'Zr filter'
'Ge 220'
'none'
'equatorial mounted graphite'
save_
save_<A name="_diffrn_radiation.polarisn_norm">_diffrn_radiation.polarisn_norm</a>
_item_description.description
; The angle in degrees, as viewed from the specimen, between the
perpendicular component of the polarization and the diffraction
plane. See _diffrn_radiation_polarisn_ratio.
;
_item.name '<a href="#_diffrn_radiation.polarisn_norm">_diffrn_radiation.polarisn_norm</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_polarisn_norm'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
loop_
_item_range.maximum
_item_range.minimum 90.0 90.0
90.0 -90.0
-90.0 -90.0
_item_type.code float
_item_units.code degrees
save_
save_<A name="_diffrn_radiation.polarisn_ratio">_diffrn_radiation.polarisn_ratio</a>
_item_description.description
; Polarization ratio of the diffraction beam incident on the
crystal. This is the ratio of the perpendicularly polarized to
the parallel polarized component of the radiation. The
perpendicular component forms an angle of
<a href="#_diffrn_radiation.polarisn_norm">_diffrn_radiation.polarisn_norm</a> to the normal to the
diffraction plane of the sample (i.e. the plane containing
the incident and reflected beams).
;
_item.name '<a href="#_diffrn_radiation.polarisn_ratio">_diffrn_radiation.polarisn_ratio</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_polarisn_ratio'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
loop_
_item_range.maximum
_item_range.minimum . 0.0
0.0 0.0
_item_type.code float
save_
save_<a name="_diffrn_radiation.polarizn_source_norm">_diffrn_radiation.polarizn_source_norm</a>
_item_description.description
; The angle in degrees, as viewed from the specimen, between
the normal to the polarization plane and the laboratory <b>Y</b>
axis as defined in the <a href="#AXIS">AXIS</a> category.
Note that this is the angle of polarization of the source
photons, either directly from a synchrotron beamline or
from a monochromater.
This differs from the value of
<a href="#_diffrn_radiation.polarisn_norm">_diffrn_radiation.polarisn_norm</a>
in that <a href="#_diffrn_radiation.polarisn_norm">_diffrn_radiation.polarisn_norm</a> refers to
polarization relative to the diffraction plane rather than
to the laboratory axis system.
In the case of an unpolarized beam, or a beam with true
circular polarization, in which no single plane of
polarization can be determined, the plane should be taken
as the XZ plane and the angle as 0.
See <a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>.
;
_item.name '<a href="#_diffrn_radiation.polarizn_source_norm">_diffrn_radiation.polarizn_source_norm</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
loop_
_item_range.maximum
_item_range.minimum 90.0 90.0
90.0 -90.0
-90.0 -90.0
_item_type.code float
_item_units.code degrees
_item_default.value 0.0
save_
save_<a name="_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>
_item_description.description
; (Ip-In)/(Ip+In), where Ip is the intensity
(amplitude squared) of the electric vector in the plane of
polarization and In is the intensity (amplitude squared)
of the electric vector in the plane of the normal to the
plane of polarization.
In the case of an unpolarized beam, or a beam with true
circular polarization, in which no single plane of
polarization can be determined, the plane is to be taken
as the XZ plane and the normal is parallel to the <b>Y</b> axis.
Thus, if there was complete polarization in the plane of
polarization, the value of
<a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a> would be 1, and
for an unpolarized beam
<a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a> would have a
value of 0.
If the <b>X</b> axis has been chosen to lie in the plane of
polarization, this definition will agree with the definition
of 'MONOCHROMATOR' in the Denzo glossary, and values of near
1 should be expected for a bending-magnet source. However,
if the <b>X</b> axis were perpendicular to the polarization plane
(not a common choice), then the Denzo value would be the
negative of <a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>.
See <a href="http://www.hkl-xray.com">http://www.hkl-xray.com</a> for information on Denzo and
Otwinowski & Minor (1997).
This differs both in the choice of ratio and choice of
orientation from <a href="#_diffrn_radiation.polarisn_ratio">_diffrn_radiation.polarisn_ratio</a>, which,
unlike <a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>, is
unbounded.
Reference: Otwinowski, Z. & Minor, W. (1997). 'Processing of
X-ray diffraction data collected in oscillation mode.' Methods
Enzymol. 276, 307-326.
;
_item.name '<a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
loop_
_item_range.maximum
_item_range.minimum 1.0 1.0
1.0 -1.0
-1.0 -1.0
_item_type.code float
save_
save_<A name="_diffrn_radiation.probe">_diffrn_radiation.probe</a>
_item_description.description
; Name of the type of radiation used. It is strongly
recommended that this be given so that the
probe radiation is clearly specified.
;
_item.name '<a href="#_diffrn_radiation.probe">_diffrn_radiation.probe</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_probe'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code line
loop_
_item_enumeration.value 'X-ray'
'neutron'
'electron'
'gamma'
save_
save_<A name="_diffrn_radiation.type">_diffrn_radiation.type</a>
_item_description.description
; The nature of the radiation. This is typically a description
of the X-ray wavelength in Siegbahn notation.
;
_item.name '<a href="#_diffrn_radiation.type">_diffrn_radiation.type</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_type'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code line
loop_
_item_examples.case 'CuK\a'
'Cu K\a~1~'
'Cu K-L~2,3~'
'white-beam'
save_
save_<A name="_diffrn_radiation.xray_symbol">_diffrn_radiation.xray_symbol</a>
_item_description.description
; The IUPAC symbol for the X-ray wavelength for the probe
radiation.
;
_item.name '<a href="#_diffrn_radiation.xray_symbol">_diffrn_radiation.xray_symbol</a>'
_item.category_id diffrn_radiation
_item.mandatory_code no
_item_aliases.alias_name '_diffrn_radiation_xray_symbol'
_item_aliases.dictionary cif_core.dic
_item_aliases.version 2.0.1
_item_type.code line
loop_
_item_enumeration.value
_item_enumeration.detail 'K-L~3~'
'K\a~1~ in older Siegbahn notation'
'K-L~2~'
'K\a~2~ in older Siegbahn notation'
'K-M~3~'
'K\b~1~ in older Siegbahn notation'
'K-L~2,3~'
'use where K-L~3~ and K-L~2~ are not resolved'
save_
save_<A name="_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a>
_item_description.description
; This data item is a pointer to
<a href="#_diffrn_radiation_wavelength.id">_diffrn_radiation_wavelength.id</a> in the
DIFFRN_RADIATION_WAVELENGTH category.
;
_item.name '<a href="#_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a>'
_item.category_id diffrn_radiation
_item.mandatory_code yes
_item_type.code code
save_
################
# <a name="DIFFRN_REFLN">DIFFRN_REFLN</a> #
################
save_DIFFRN_REFLN
_category.description
; This category redefinition has been added to extend the key of
the standard <a href="#DIFFRN_REFLN">DIFFRN_REFLN</a> category.
;
_category.id diffrn_refln
_category.mandatory_code no
_category_key.name '<a href="#_diffrn_refln.frame_id" >_diffrn_refln.frame_id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
save_
save_<a name="_diffrn_refln.frame_id" >_diffrn_refln.frame_id</a>
_item_description.description
; This item is a pointer to <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a>
in the <a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category.
;
_item.name '<a href="#_diffrn_refln.frame_id" >_diffrn_refln.frame_id</a>'
_item.category_id diffrn_refln
_item.mandatory_code yes
_item_type.code code
save_
###############
# <a name="DIFFRN_SCAN">DIFFRN_SCAN</a> #
###############
save_DIFFRN_SCAN
_category.description
; Data items in the <a href="#DIFFRN_SCAN">DIFFRN_SCAN</a> category describe the parameters of one
or more scans, relating axis positions to frames.
;
_category.id diffrn_scan
_category.mandatory_code no
_category_key.name '<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - derived from a suggestion by R. M. Sweet.
The vector of each axis is not given here, because it is provided in
the <a href="#AXIS">AXIS</a> category. By making <a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a> and
<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a> keys of the <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a> category,
an arbitrary number of scanning and fixed axes can be specified for a
scan. In this example, three rotation axes and one translation axis
at nonzero values are specified, with one axis stepping. There is no
reason why more axes could not have been specified to step. Range
information has been specified, but note that it can be calculated from
the number of frames and the increment, so the data item
<a href="#_diffrn_scan_axis.angle_range">_diffrn_scan_axis.angle_range</a> could be dropped.
Both the sweep data and the data for a single frame are specified.
Note that the information on how the axes are stepped is given twice,
once in terms of the overall averages in the value of
<a href="#_diffrn_scan.integration_time" >_diffrn_scan.integration_time</a> and the values for <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a>,
and precisely for the given frame in the value for
<a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a> and the values for
<a href="#DIFFRN_SCAN_FRAME_AXIS">DIFFRN_SCAN_FRAME_AXIS</a>. If dose-related adjustments are made to
scan times and nonlinear stepping is done, these values may differ.
Therefore, in interpreting the data for a particular frame it is
important to use the frame-specific data.
;
;
<a href="#_diffrn_scan.id">_diffrn_scan.id</a> 1
<a href="#_diffrn_scan.date_start" >_diffrn_scan.date_start</a> '2001-11-18T03:26:42'
<a href="#_diffrn_scan.date_end" >_diffrn_scan.date_end</a> '2001-11-18T03:36:45'
<a href="#_diffrn_scan.integration_time" >_diffrn_scan.integration_time</a> 3.0
<a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a> mad_L2_000
<a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a> mad_L2_200
<a href="#_diffrn_scan.frames" >_diffrn_scan.frames</a> 201
loop_
<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>
<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>
<a href="#_diffrn_scan_axis.angle_start" >_diffrn_scan_axis.angle_start</a>
<a href="#_diffrn_scan_axis.angle_range" >_diffrn_scan_axis.angle_range</a>
<a href="#_diffrn_scan_axis.angle_increment" >_diffrn_scan_axis.angle_increment</a>
<a href="#_diffrn_scan_axis.displacement_start" >_diffrn_scan_axis.displacement_start</a>
<a href="#_diffrn_scan_axis.displacement_range" >_diffrn_scan_axis.displacement_range</a>
<a href="#_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a>
1 omega 200.0 20.0 0.1 . . .
1 kappa -40.0 0.0 0.0 . . .
1 phi 127.5 0.0 0.0 . . .
1 tranz . . . 2.3 0.0 0.0
<a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a> 1
<a href="#_diffrn_scan_frame.date" >_diffrn_scan_frame.date</a> '2001-11-18T03:27:33'
<a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a> 3.0
<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a> mad_L2_018
<a href="#_diffrn_scan_frame.frame_number" >_diffrn_scan_frame.frame_number</a> 18
loop_
<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>
<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>
<a href="#_diffrn_scan_frame_axis.angle">_diffrn_scan_frame_axis.angle</a>
<a href="#_diffrn_scan_frame_axis.angle_increment" >_diffrn_scan_frame_axis.angle_increment</a>
<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>
<a href="#_diffrn_scan_frame_axis.displacement_increment" >_diffrn_scan_frame_axis.displacement_increment</a>
mad_L2_018 omega 201.8 0.1 . .
mad_L2_018 kappa -40.0 0.0 . .
mad_L2_018 phi 127.5 0.0 . .
mad_L2_018 tranz . . 2.3 0.0
;
; Example 2 - a more extensive example (R. M. Sweet, P. J. Ellis &
H. J. Bernstein).
A detector is placed 240 mm along the <b>Z</b> axis from the goniometer.
This leads to a choice: either the axes of
the detector are defined at the origin, and then a Z setting of -240
is entered, or the axes are defined with the necessary Z offset.
In this case, the setting is used and the offset is left as zero.
This axis is called DETECTOR_Z.
The axis for positioning the detector in the <b>Y</b> direction depends
on the detector <b>Z</b> axis. This axis is called DETECTOR_Y.
The axis for positioning the detector in the <b>X</b> direction depends
on the detector <b>Y</b> axis (and therefore on the detector <b>Z</b> axis).
This axis is called DETECTOR_X.
This detector may be rotated around the <b>Y</b> axis. This rotation axis
depends on the three translation axes. It is called DETECTOR_PITCH.
A coordinate system is defined on the face of the detector in terms of
2300 0.150 mm pixels in each direction. The ELEMENT_X axis is used to
index the first array index of the data array and the ELEMENT_Y
axis is used to index the second array index. Because the pixels
are 0.150mm <b>X</b> 0.150mm, the centre of the first pixel is at (0.075,
0.075) in this coordinate system.
;
; ###CBF: VERSION 1.1
data_image_1
# category DIFFRN
_diffrn.id P6MB
_diffrn.crystal_id P6MB_CRYSTAL7
# category DIFFRN_SOURCE
loop_
_diffrn_source.diffrn_id
_diffrn_source.source
_diffrn_source.type
P6MB synchrotron 'SSRL beamline 9-1'
# category <a href="#DIFFRN_RADIATION">DIFFRN_RADIATION</a>
loop_
<a href="#_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a>
<a href="#_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a>
<a href="#_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a>
<a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>
<a href="#_diffrn_radiation.polarizn_source_norm">_diffrn_radiation.polarizn_source_norm</a>
<a href="#_diffrn_radiation.div_x_source">_diffrn_radiation.div_x_source</a>
<a href="#_diffrn_radiation.div_y_source">_diffrn_radiation.div_y_source</a>
<a href="#_diffrn_radiation.div_x_y_source">_diffrn_radiation.div_x_y_source</a>
P6MB WAVELENGTH1 'Si 111' 0.8 0.0 0.08
0.01 0.00
# category DIFFRN_RADIATION_WAVELENGTH
loop_
_diffrn_radiation_wavelength.id
_diffrn_radiation_wavelength.wavelength
_diffrn_radiation_wavelength.wt
WAVELENGTH1 0.98 1.0
# category <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a>
loop_
<a href="#_diffrn_detector.diffrn_id">_diffrn_detector.diffrn_id</a>
<a href="#_diffrn_detector.id">_diffrn_detector.id</a>
<a href="#_diffrn_detector.type">_diffrn_detector.type</a>
<a href="#_diffrn_detector.number_of_axes">_diffrn_detector.number_of_axes</a>
P6MB MAR345-SN26 'MAR 345' 4
# category <a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a>
loop_
<a href="#_diffrn_detector_axis.detector_id">_diffrn_detector_axis.detector_id</a>
<a href="#_diffrn_detector_axis.axis_id">_diffrn_detector_axis.axis_id</a>
MAR345-SN26 DETECTOR_X
MAR345-SN26 DETECTOR_Y
MAR345-SN26 DETECTOR_Z
MAR345-SN26 DETECTOR_PITCH
# category <a href="#DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a>
loop_
<a href="#_diffrn_detector_element.id">_diffrn_detector_element.id</a>
<a href="#_diffrn_detector_element.detector_id#">_diffrn_detector_element.detector_id</a>
ELEMENT1 MAR345-SN26
# category <a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a>
loop_
<a href="#_diffrn_data_frame.id">_diffrn_data_frame.id</a>
<a href="#_diffrn_data_frame.detector_element_id">_diffrn_data_frame.detector_element_id</a>
<a href="#_diffrn_data_frame.array_id">_diffrn_data_frame.array_id</a>
<a href="#_diffrn_data_frame.binary_id">_diffrn_data_frame.binary_id</a>
FRAME1 ELEMENT1 ARRAY1 1
# category <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a>
loop_
<a href="#_diffrn_measurement.diffrn_id">_diffrn_measurement.diffrn_id</a>
<a href="#_diffrn_measurement.id">_diffrn_measurement.id</a>
<a href="#_diffrn_measurement.number_of_axes">_diffrn_measurement.number_of_axes</a>
<a href="#_diffrn_measurement.method">_diffrn_measurement.method</a>
P6MB GONIOMETER 3 rotation
# category <a href="#DIFFRN_MEASUREMENT_AXIS">DIFFRN_MEASUREMENT_AXIS</a>
loop_
<a href="#_diffrn_measurement_axis.measurement_id">_diffrn_measurement_axis.measurement_id</a>
<a href="#_diffrn_measurement_axis.axis_id">_diffrn_measurement_axis.axis_id</a>
GONIOMETER GONIOMETER_PHI
GONIOMETER GONIOMETER_KAPPA
GONIOMETER GONIOMETER_OMEGA
# category <a href="#DIFFRN_SCAN">DIFFRN_SCAN</a>
loop_
<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>
<a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>
<a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>
<a href="#_diffrn_scan.frames" >_diffrn_scan.frames</a>
SCAN1 FRAME1 FRAME1 1
# category <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a>
loop_
<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>
<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>
<a href="#_diffrn_scan_axis.angle_start" >_diffrn_scan_axis.angle_start</a>
<a href="#_diffrn_scan_axis.angle_range" >_diffrn_scan_axis.angle_range</a>
<a href="#_diffrn_scan_axis.angle_increment" >_diffrn_scan_axis.angle_increment</a>
<a href="#_diffrn_scan_axis.displacement_start" >_diffrn_scan_axis.displacement_start</a>
<a href="#_diffrn_scan_axis.displacement_range" >_diffrn_scan_axis.displacement_range</a>
<a href="#_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a>
SCAN1 GONIOMETER_OMEGA 12.0 1.0 1.0 0.0 0.0 0.0
SCAN1 GONIOMETER_KAPPA 23.3 0.0 0.0 0.0 0.0 0.0
SCAN1 GONIOMETER_PHI -165.8 0.0 0.0 0.0 0.0 0.0
SCAN1 DETECTOR_Z 0.0 0.0 0.0 -240.0 0.0 0.0
SCAN1 DETECTOR_Y 0.0 0.0 0.0 0.6 0.0 0.0
SCAN1 DETECTOR_X 0.0 0.0 0.0 -0.5 0.0 0.0
SCAN1 DETECTOR_PITCH 0.0 0.0 0.0 0.0 0.0 0.0
# category <a href="#DIFFRN_SCAN_FRAME">DIFFRN_SCAN_FRAME</a>
loop_
<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>
<a href="#_diffrn_scan_frame.frame_number" >_diffrn_scan_frame.frame_number</a>
<a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a>
<a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>
<a href="#_diffrn_scan_frame.date" >_diffrn_scan_frame.date</a>
FRAME1 1 20.0 SCAN1 1997-12-04T10:23:48
# category <a href="#DIFFRN_SCAN_FRAME_AXIS">DIFFRN_SCAN_FRAME_AXIS</a>
loop_
<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>
<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>
<a href="#_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a>
<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>
FRAME1 GONIOMETER_OMEGA 12.0 0.0
FRAME1 GONIOMETER_KAPPA 23.3 0.0
FRAME1 GONIOMETER_PHI -165.8 0.0
FRAME1 DETECTOR_Z 0.0 -240.0
FRAME1 DETECTOR_Y 0.0 0.6
FRAME1 DETECTOR_X 0.0 -0.5
FRAME1 DETECTOR_PITCH 0.0 0.0
# category <a href="#AXIS">AXIS</a>
loop_
<a href="#_axis.id">_axis.id</a>
<a href="#_axis.type">_axis.type</a>
<a href="#_axis.equipment">_axis.equipment</a>
<a href="#_axis.depends_on">_axis.depends_on</a>
<a href="#_axis.vector[1]">_axis.vector[1]</a> <a href="#_axis.vector[2]">_axis.vector[2]</a> <a href="#_axis.vector[3]">_axis.vector[3]</a>
<a href="#_axis.offset[1]">_axis.offset[1]</a> <a href="#_axis.offset[2]">_axis.offset[2]</a> <a href="#_axis.offset[3]">_axis.offset[3]</a>
GONIOMETER_OMEGA rotation goniometer . 1 0 0 . . .
GONIOMETER_KAPPA rotation goniometer GONIOMETER_OMEGA 0.64279
0 0.76604 . . .
GONIOMETER_PHI rotation goniometer GONIOMETER_KAPPA 1 0 0
. . .
SOURCE general source . 0 0 1 . . .
GRAVITY general gravity . 0 -1 0 . . .
DETECTOR_Z translation detector . 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 172.43 -172.43 0
ELEMENT_Y translation detector ELEMENT_X
0 1 0 0 0 0
# category <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a>
loop_
<a href="#_array_structure_list.array_id">_array_structure_list.array_id</a>
<a href="#_array_structure_list.index">_array_structure_list.index</a>
<a href="#_array_structure_list.dimension">_array_structure_list.dimension</a>
<a href="#_array_structure_list.precedence">_array_structure_list.precedence</a>
<a href="#_array_structure_list.direction">_array_structure_list.direction</a>
<a href="#_array_structure_list.axis_set_id">_array_structure_list.axis_set_id</a>
ARRAY1 1 2300 1 increasing ELEMENT_X
ARRAY1 2 2300 2 increasing ELEMENT_Y
# category <a href="#ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a>
loop_
<a href="#_array_structure_list_axis.axis_set_id">_array_structure_list_axis.axis_set_id</a>
<a href="#_array_structure_list_axis.axis_id">_array_structure_list_axis.axis_id</a>
<a href="#_array_structure_list_axis.displacement">_array_structure_list_axis.displacement</a>
<a href="#_array_structure_list_axis.displacement_increment">_array_structure_list_axis.displacement_increment</a>
ELEMENT_X ELEMENT_X 0.075 0.150
ELEMENT_Y ELEMENT_Y 0.075 0.150
# category <a href="#ARRAY_ELEMENT_SIZE">ARRAY_ELEMENT_SIZE</a>
loop_
<a href="#_array_element_size.array_id">_array_element_size.array_id</a>
<a href="#_array_element_size.index">_array_element_size.index</a>
<a href="#_array_element_size.index">_array_element_size.size</a>
ARRAY1 1 150e-6
ARRAY1 2 150e-6
# category <a href="#ARRAY_INTENSITIES">ARRAY_INTENSITIES</a>
loop_
<a href="#_array_intensities.array_id">_array_intensities.array_id</a>
<a href="#_array_intensities.binary_id">_array_intensities.binary_id</a>
<a href="#_array_intensities.linearity">_array_intensities.linearity</a>
<a href="#_array_intensities.gain">_array_intensities.gain</a>
<a href="#_array_intensities.gain_esd">_array_intensities.gain_esd</a>
<a href="#_array_intensities.overload">_array_intensities.overload</a>
<a href="#_array_intensities.undefined_value">_array_intensities.undefined_value</a>
ARRAY1 1 linear 1.15 0.2 240000 0
# category <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a>
loop_
<a href="#_array_structure.id">_array_structure.id</a>
<a href="#_array_structure.encoding_type">_array_structure.encoding_type</a>
<a href="#_array_structure.compression_type">_array_structure.compression_type</a>
<a href="#_array_structure.byte_order">_array_structure.byte_order</a>
ARRAY1 "signed 32-bit integer" packed little_endian
# category <a href="#ARRAY_DATA">ARRAY_DATA</a>
loop_
<a href="#_array_data.array_id">_array_data.array_id</a>
<a href="#_array_data.binary_id">_array_data.binary_id</a>
<a href="#_array_data.data">_array_data.data</a>
ARRAY1 1
;
--CIF-BINARY-FORMAT-SECTION--
Content-Type: application/octet-stream;
conversions="<b>X</b>-CBF_PACKED"
Content-Transfer-Encoding: BASE64
<b>X</b>-Binary-Size: 3801324
<b>X</b>-Binary-ID: 1
<b>X</b>-Binary-Element-Type: "signed 32-bit integer"
Content-MD5: 07lZFvF+aOcW85IN7usl8A==
AABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZBQSr1sKNBOeOe9HITdMdDUnbq7bg
...
8REo6TtBrxJ1vKqAvx9YDMD6J18Qg83OMr/tgssjMIJMXATDsZobL90AEXc4KigE
--CIF-BINARY-FORMAT-SECTION----
;
;
; Example 3 - Example 2 revised for a spiral scan (R. M. Sweet,
P. J. Ellis & H. J. Bernstein).
A detector is placed 240 mm along the <b>Z</b> axis from the
goniometer, as in Example 2 above, but in this example the
image plate is scanned in a spiral pattern from the outside edge in.
The axis for positioning the detector in the <b>Y</b> direction depends
on the detector <b>Z</b> axis. This axis is called DETECTOR_Y.
The axis for positioning the detector in the <b>X</b> direction depends
on the detector <b>Y</b> axis (and therefore on the detector <b>Z</b> axis).
This axis is called DETECTOR_X.
This detector may be rotated around the <b>Y</b> axis. This rotation axis
depends on the three translation axes. It is called DETECTOR_PITCH.
A coordinate system is defined on the face of the detector in
terms of a coupled rotation axis and radial scan axis to form
a spiral scan. The rotation axis is called ELEMENT_ROT and the
radial axis is called ELEMENT_RAD. A 150 micrometre radial pitch
and a 75 micrometre 'constant velocity' angular pitch are assumed.
Indexing is carried out first on the rotation axis and the radial axis
is made to be dependent on it.
The two axes are coupled to form an axis set ELEMENT_SPIRAL.
;
; ###CBF: VERSION 1.1
data_image_1
# category DIFFRN
_diffrn.id P6MB
_diffrn.crystal_id P6MB_CRYSTAL7
# category DIFFRN_SOURCE
loop_
_diffrn_source.diffrn_id
_diffrn_source.source
_diffrn_source.type
P6MB synchrotron 'SSRL beamline 9-1'
# category <a href="#DIFFRN_RADIATION">DIFFRN_RADIATION</a>
loop_
<a href="#_diffrn_radiation.diffrn_id">_diffrn_radiation.diffrn_id</a>
<a href="#_diffrn_radiation.wavelength_id">_diffrn_radiation.wavelength_id</a>
<a href="#_diffrn_radiation.monochromator">_diffrn_radiation.monochromator</a>
<a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>
<a href="#_diffrn_radiation.polarizn_source_norm">_diffrn_radiation.polarizn_source_norm</a>
<a href="#_diffrn_radiation.div_x_source">_diffrn_radiation.div_x_source</a>
<a href="#_diffrn_radiation.div_y_source">_diffrn_radiation.div_y_source</a>
<a href="#_diffrn_radiation.div_x_y_source">_diffrn_radiation.div_x_y_source</a>
P6MB WAVELENGTH1 'Si 111' 0.8 0.0 0.08
0.01 0.00
# category DIFFRN_RADIATION_WAVELENGTH
loop_
_diffrn_radiation_wavelength.id
_diffrn_radiation_wavelength.wavelength
_diffrn_radiation_wavelength.wt
WAVELENGTH1 0.98 1.0
# category <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a>
loop_
<a href="#_diffrn_detector.diffrn_id">_diffrn_detector.diffrn_id</a>
<a href="#_diffrn_detector.id">_diffrn_detector.id</a>
<a href="#_diffrn_detector.type">_diffrn_detector.type</a>
<a href="#_diffrn_detector.number_of_axes">_diffrn_detector.number_of_axes</a>
P6MB MAR345-SN26 'MAR 345' 4
# category <a href="#DIFFRN_DETECTOR_AXIS">DIFFRN_DETECTOR_AXIS</a>
loop_
<a href="#_diffrn_detector_axis.detector_id">_diffrn_detector_axis.detector_id</a>
<a href="#_diffrn_detector_axis.axis_id">_diffrn_detector_axis.axis_id</a>
MAR345-SN26 DETECTOR_X
MAR345-SN26 DETECTOR_Y
MAR345-SN26 DETECTOR_Z
MAR345-SN26 DETECTOR_PITCH
# category <a href="#DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a>
loop_
<a href="#_diffrn_detector_element.id">_diffrn_detector_element.id</a>
<a href="#_diffrn_detector_element.detector_id#">_diffrn_detector_element.detector_id</a>
ELEMENT1 MAR345-SN26
# category <a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a>
loop_
<a href="#_diffrn_data_frame.id">_diffrn_data_frame.id</a>
<a href="#_diffrn_data_frame.detector_element_id">_diffrn_data_frame.detector_element_id</a>
<a href="#_diffrn_data_frame.array_id">_diffrn_data_frame.array_id</a>
<a href="#_diffrn_data_frame.binary_id">_diffrn_data_frame.binary_id</a>
FRAME1 ELEMENT1 ARRAY1 1
# category <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a>
loop_
<a href="#_diffrn_measurement.diffrn_id">_diffrn_measurement.diffrn_id</a>
<a href="#_diffrn_measurement.id">_diffrn_measurement.id</a>
<a href="#_diffrn_measurement.number_of_axes">_diffrn_measurement.number_of_axes</a>
<a href="#_diffrn_measurement.method">_diffrn_measurement.method</a>
P6MB GONIOMETER 3 rotation
# category <a href="#DIFFRN_MEASUREMENT_AXIS">DIFFRN_MEASUREMENT_AXIS</a>
loop_
<a href="#_diffrn_measurement_axis.measurement_id">_diffrn_measurement_axis.measurement_id</a>
<a href="#_diffrn_measurement_axis.axis_id">_diffrn_measurement_axis.axis_id</a>
GONIOMETER GONIOMETER_PHI
GONIOMETER GONIOMETER_KAPPA
GONIOMETER GONIOMETER_OMEGA
# category <a href="#DIFFRN_SCAN">DIFFRN_SCAN</a>
loop_
<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>
<a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>
<a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>
<a href="#_diffrn_scan.frames" >_diffrn_scan.frames</a>
SCAN1 FRAME1 FRAME1 1
# category <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a>
loop_
<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>
<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>
<a href="#_diffrn_scan_axis.angle_start" >_diffrn_scan_axis.angle_start</a>
<a href="#_diffrn_scan_axis.angle_range" >_diffrn_scan_axis.angle_range</a>
<a href="#_diffrn_scan_axis.angle_increment" >_diffrn_scan_axis.angle_increment</a>
<a href="#_diffrn_scan_axis.displacement_start" >_diffrn_scan_axis.displacement_start</a>
<a href="#_diffrn_scan_axis.displacement_range" >_diffrn_scan_axis.displacement_range</a>
<a href="#_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a>
SCAN1 GONIOMETER_OMEGA 12.0 1.0 1.0 0.0 0.0 0.0
SCAN1 GONIOMETER_KAPPA 23.3 0.0 0.0 0.0 0.0 0.0
SCAN1 GONIOMETER_PHI -165.8 0.0 0.0 0.0 0.0 0.0
SCAN1 DETECTOR_Z 0.0 0.0 0.0 -240.0 0.0 0.0
SCAN1 DETECTOR_Y 0.0 0.0 0.0 0.6 0.0 0.0
SCAN1 DETECTOR_X 0.0 0.0 0.0 -0.5 0.0 0.0
SCAN1 DETECTOR_PITCH 0.0 0.0 0.0 0.0 0.0 0.0
# category <a href="#DIFFRN_SCAN_FRAME">DIFFRN_SCAN_FRAME</a>
loop_
<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>
<a href="#_diffrn_scan_frame.frame_number" >_diffrn_scan_frame.frame_number</a>
<a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a>
<a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>
<a href="#_diffrn_scan_frame.date" >_diffrn_scan_frame.date</a>
FRAME1 1 20.0 SCAN1 1997-12-04T10:23:48
# category <a href="#DIFFRN_SCAN_FRAME_AXIS">DIFFRN_SCAN_FRAME_AXIS</a>
loop_
<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>
<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>
<a href="#_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a>
<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>
FRAME1 GONIOMETER_OMEGA 12.0 0.0
FRAME1 GONIOMETER_KAPPA 23.3 0.0
FRAME1 GONIOMETER_PHI -165.8 0.0
FRAME1 DETECTOR_Z 0.0 -240.0
FRAME1 DETECTOR_Y 0.0 0.6
FRAME1 DETECTOR_X 0.0 -0.5
FRAME1 DETECTOR_PITCH 0.0 0.0
# category <a href="#AXIS">AXIS</a>
loop_
<a href="#_axis.id">_axis.id</a>
<a href="#_axis.type">_axis.type</a>
<a href="#_axis.equipment">_axis.equipment</a>
<a href="#_axis.depends_on">_axis.depends_on</a>
<a href="#_axis.vector[1]">_axis.vector[1]</a> <a href="#_axis.vector[2]">_axis.vector[2]</a> <a href="#_axis.vector[3]">_axis.vector[3]</a>
<a href="#_axis.offset[1]">_axis.offset[1]</a> <a href="#_axis.offset[2]">_axis.offset[2]</a> <a href="#_axis.offset[3]">_axis.offset[3]</a>
GONIOMETER_OMEGA rotation goniometer . 1 0 0 . . .
GONIOMETER_KAPPA rotation goniometer GONIOMETER_OMEGA 0.64279
0 0.76604 . . .
GONIOMETER_PHI rotation goniometer GONIOMETER_KAPPA 1 0 0
. . .
SOURCE general source . 0 0 1 . . .
GRAVITY general gravity . 0 -1 0 . . .
DETECTOR_Z translation detector . 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_ROT translation detector DETECTOR_PITCH 0 0 1 0 0 0
ELEMENT_RAD translation detector ELEMENT_ROT 0 1 0 0 0 0
# category <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a>
loop_
<a href="#_array_structure_list.array_id">_array_structure_list.array_id</a>
<a href="#_array_structure_list.index">_array_structure_list.index</a>
<a href="#_array_structure_list.dimension">_array_structure_list.dimension</a>
<a href="#_array_structure_list.precedence">_array_structure_list.precedence</a>
<a href="#_array_structure_list.direction">_array_structure_list.direction</a>
<a href="#_array_structure_list.axis_set_id">_array_structure_list.axis_set_id</a>
ARRAY1 1 8309900 1 increasing ELEMENT_SPIRAL
# category <a href="#ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a>
loop_
<a href="#_array_structure_list_axis.axis_set_id">_array_structure_list_axis.axis_set_id</a>
<a href="#_array_structure_list_axis.axis_id">_array_structure_list_axis.axis_id</a>
<a href="#_array_structure_list_axis.angle">_array_structure_list_axis.angle</a>
<a href="#_array_structure_list_axis.displacement">_array_structure_list_axis.displacement</a>
<a href="#_array_structure_list_axis.angular_pitch">_array_structure_list_axis.angular_pitch</a>
<a href="#_array_structure_list_axis.radial_pitch">_array_structure_list_axis.radial_pitch</a>
ELEMENT_SPIRAL ELEMENT_ROT 0 . 0.075 .
ELEMENT_SPIRAL ELEMENT_RAD . 172.5 . -0.150
# category <a href="#ARRAY_ELEMENT_SIZE">ARRAY_ELEMENT_SIZE</a>
# the actual pixels are 0.075 by 0.150 mm
# We give the coarser dimension here.
loop_
<a href="#_array_element_size.array_id">_array_element_size.array_id</a>
<a href="#_array_element_size.index">_array_element_size.index</a>
<a href="#_array_element_size.index">_array_element_size.size</a>
ARRAY1 1 150e-6
# category <a href="#ARRAY_INTENSITIES">ARRAY_INTENSITIES</a>
loop_
<a href="#_array_intensities.array_id">_array_intensities.array_id</a>
<a href="#_array_intensities.binary_id">_array_intensities.binary_id</a>
<a href="#_array_intensities.linearity">_array_intensities.linearity</a>
<a href="#_array_intensities.gain">_array_intensities.gain</a>
<a href="#_array_intensities.gain_esd">_array_intensities.gain_esd</a>
<a href="#_array_intensities.overload">_array_intensities.overload</a>
<a href="#_array_intensities.undefined_value">_array_intensities.undefined_value</a>
ARRAY1 1 linear 1.15 0.2 240000 0
# category <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a>
loop_
<a href="#_array_structure.id">_array_structure.id</a>
<a href="#_array_structure.encoding_type">_array_structure.encoding_type</a>
<a href="#_array_structure.compression_type">_array_structure.compression_type</a>
<a href="#_array_structure.byte_order">_array_structure.byte_order</a>
ARRAY1 "signed 32-bit integer" packed little_endian
# category <a href="#ARRAY_DATA">ARRAY_DATA</a>
loop_
<a href="#_array_data.array_id">_array_data.array_id</a>
<a href="#_array_data.binary_id">_array_data.binary_id</a>
<a href="#_array_data.data">_array_data.data</a>
ARRAY1 1
;
--CIF-BINARY-FORMAT-SECTION--
Content-Type: application/octet-stream;
conversions="<b>X</b>-CBF_PACKED"
Content-Transfer-Encoding: BASE64
<b>X</b>-Binary-Size: 3801324
<b>X</b>-Binary-ID: 1
<b>X</b>-Binary-Element-Type: "signed 32-bit integer"
Content-MD5: 07lZFvF+aOcW85IN7usl8A==
AABRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZBQSr1sKNBOeOe9HITdMdDUnbq7bg
...
8REo6TtBrxJ1vKqAvx9YDMD6J18Qg83OMr/tgssjMIJMXATDsZobL90AEXc4KigE
--CIF-BINARY-FORMAT-SECTION----
;
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_diffrn_scan.id" >_diffrn_scan.id</a>
_item_description.description
; The value of <a href="#_diffrn_scan.id" >_diffrn_scan.id</a> uniquely identifies each
scan. The identifier is used to tie together all the
information about the scan.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>' diffrn_scan yes
'<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>' diffrn_scan_axis yes
'<a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>' diffrn_scan_frame yes
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>' '<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>'
'<a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>' '<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>'
save_
save_<a name="_diffrn_scan.date_end">_diffrn_scan.date_end</a>
_item_description.description
; The date and time of the end of the scan. Note that this
may be an estimate generated during the scan, before the
precise time of the end of the scan is known.
;
_item.name '<a href="#_diffrn_scan.date_end">_diffrn_scan.date_end</a>'
_item.category_id diffrn_scan
_item.mandatory_code no
_item_type.code yyyy-mm-dd
save_
save_<a name="_diffrn_scan.date_start">_diffrn_scan.date_start</a>
_item_description.description
; The date and time of the start of the scan.
;
_item.name '<a href="#_diffrn_scan.date_start">_diffrn_scan.date_start</a>'
_item.category_id diffrn_scan
_item.mandatory_code no
_item_type.code yyyy-mm-dd
save_
save_<a name="_diffrn_scan.integration_time" >_diffrn_scan.integration_time</a>
_item_description.description
; Approximate average time in seconds to integrate each
step of the scan. The precise time for integration
of each particular step must be provided in
<a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a>, even
if all steps have the same integration time.
;
_item.name '<a href="#_diffrn_scan.integration_time" >_diffrn_scan.integration_time</a>'
_item.category_id diffrn_scan
_item.mandatory_code no
_item_type.code float
_item_units.code 'seconds'
loop_
_item_range.maximum
_item_range.minimum
. 0.0
save_
save_<a name="_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>
_item_description.description
; The value of this data item is the identifier of the
first frame in the scan.
This item is a pointer to <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a> in the
<a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category.
;
_item.name '<a href="#_diffrn_scan.frame_id_start" >_diffrn_scan.frame_id_start</a>'
_item.category_id diffrn_scan
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>
_item_description.description
; The value of this data item is the identifier of the
last frame in the scan.
This item is a pointer to <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a> in the
<a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category.
;
_item.name '<a href="#_diffrn_scan.frame_id_end" >_diffrn_scan.frame_id_end</a>'
_item.category_id diffrn_scan
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan.frames" >_diffrn_scan.frames</a>
_item_description.description
; The value of this data item is the number of frames in
the scan.
;
_item.name '<a href="#_diffrn_scan.frames" >_diffrn_scan.frames</a>'
_item.category_id diffrn_scan
_item.mandatory_code no
_item_type.code int
loop_
_item_range.maximum
_item_range.minimum
. 1
1 1
save_
####################
# <a name="DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a> #
####################
save_DIFFRN_SCAN_AXIS
_category.description
; Data items in the <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a> category describe the settings of
axes for particular scans. Unspecified axes are assumed to be at
their zero points.
;
_category.id diffrn_scan_axis
_category.mandatory_code no
loop_
_category_key.name
'<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>'
'<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
save_
save_<a name="_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>
_item_description.description
; The value of this data item is the identifier of the
scan for which axis settings are being specified.
Multiple axes may be specified for the same value of
<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>.
This item is a pointer to <a href="#_diffrn_scan.id" >_diffrn_scan.id</a> in the
<a href="#DIFFRN_SCAN">DIFFRN_SCAN</a> category.
;
_item.name '<a href="#_diffrn_scan_axis.scan_id" >_diffrn_scan_axis.scan_id</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>
_item_description.description
; The value of this data item is the identifier of one of
the axes for the scan for which settings are being specified.
Multiple axes may be specified for the same value of
<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>.
This item is a pointer to <a href="#_axis.id" >_axis.id</a> in the
AXIS category.
;
_item.name '<a href="#_diffrn_scan_axis.axis_id" >_diffrn_scan_axis.axis_id</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan_axis.angle_start" >_diffrn_scan_axis.angle_start</a>
_item_description.description
; The starting position for the specified axis in degrees.
;
_item.name '<a href="#_diffrn_scan_axis.angle_start" >_diffrn_scan_axis.angle_start</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_axis.angle_range" >_diffrn_scan_axis.angle_range</a>
_item_description.description
; The range from the starting position for the specified axis
in degrees.
;
_item.name '<a href="#_diffrn_scan_axis.angle_range" >_diffrn_scan_axis.angle_range</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_axis.angle_increment" >_diffrn_scan_axis.angle_increment</a>
_item_description.description
; The increment for each step for the specified axis
in degrees. In general, this will agree with
<a href="#_diffrn_scan_frame_axis.angle_increment" >_diffrn_scan_frame_axis.angle_increment</a>. The
sum of the values of <a href="#_diffrn_scan_frame_axis.angle">_diffrn_scan_frame_axis.angle</a> and
<a href="#_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a> is the
angular setting of the axis at the end of the integration
time for a given frame. If the individual frame values
vary, then the value of
<a href="#_diffrn_scan_axis.angle_increment">_diffrn_scan_axis.angle_increment</a> will be
representative
of the ensemble of values of
<a href="#_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a> (e.g.
the mean).
;
_item.name '<a href="#_diffrn_scan_axis.angle_increment" >_diffrn_scan_axis.angle_increment</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_axis.angle_rstrt_incr">_diffrn_scan_axis.angle_rstrt_incr</a>
_item_description.description
; The increment after each step for the specified axis
in degrees. In general, this will agree with
<a href="#_diffrn_scan_frame_axis.angle_rstrt_incr" >_diffrn_scan_frame_axis.angle_rstrt_incr</a>. The
sum of the values of <a href="#_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a>,
<a href="#_diffrn_scan_frame_axis.angle_increment" >_diffrn_scan_frame_axis.angle_increment</a>
and <a href="#_diffrn_scan_frame_axis.angle_rstrt_incr" >_diffrn_scan_frame_axis.angle_rstrt_incr</a> is the
angular setting of the axis at the start of the integration
time for the next frame relative to a given frame and
should equal <a href="#_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a> for this
next frame. If the individual frame values
vary, then the value of
<a href="#_diffrn_scan_axis.angle_rstrt_incr" >_diffrn_scan_axis.angle_rstrt_incr</a> will be
representative
of the ensemble of values of
<a href="#_diffrn_scan_frame_axis.angle_rstrt_incr" >_diffrn_scan_frame_axis.angle_rstrt_incr</a> (e.g.
the mean).
;
_item.name '<a href="#_diffrn_scan_axis.angle_rstrt_incr">_diffrn_scan_axis.angle_rstrt_incr</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_axis.displacement_start" >_diffrn_scan_axis.displacement_start</a>
_item_description.description
; The starting position for the specified axis in millimetres.
;
_item.name '<a href="#_diffrn_scan_axis.displacement_start" >_diffrn_scan_axis.displacement_start</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_axis.displacement_range" >_diffrn_scan_axis.displacement_range</a>
_item_description.description
; The range from the starting position for the specified axis
in millimetres.
;
_item.name '<a href="#_diffrn_scan_axis.displacement_range" >_diffrn_scan_axis.displacement_range</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a>
_item_description.description
; The increment for each step for the specified axis
in millimetres. In general, this will agree with
<a href="#_diffrn_scan_frame_axis.displacement_increment">_diffrn_scan_frame_axis.displacement_increment</a>.
The sum of the values of
<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a> and
<a href="#_diffrn_scan_frame_axis.displacement_increment" >_diffrn_scan_frame_axis.displacement_increment</a> is the
angular setting of the axis at the end of the integration
time for a given frame. If the individual frame values
vary, then the value of
<a href="#_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a> will be
representative
of the ensemble of values of
<a href="#_diffrn_scan_frame_axis.displacement_increment" >_diffrn_scan_frame_axis.displacement_increment</a> (e.g.
the mean).
;
_item.name '<a href="#_diffrn_scan_axis.displacement_increment" >_diffrn_scan_axis.displacement_increment</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_axis.displacement_rstrt_incr">_diffrn_scan_axis.displacement_rstrt_incr</a>
_item_description.description
; The increment for each step for the specified axis
in millimetres. In general, this will agree with
<a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr">_diffrn_scan_frame_axis.displacement_rstrt_incr</a>.
The sum of the values of
<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>,
<a href="#_diffrn_scan_frame_axis.displacement_increment" >_diffrn_scan_frame_axis.displacement_increment</a> and
<a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr" >_diffrn_scan_frame_axis.displacement_rstrt_incr</a> is the
angular setting of the axis at the start of the integration
time for the next frame relative to a given frame and
should equal <a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>
for this next frame. If the individual frame values
vary, then the value of
<a href="#_diffrn_scan_axis.displacement_rstrt_incr" >_diffrn_scan_axis.displacement_rstrt_incr</a> will be
representative
of the ensemble of values of
<a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr" >_diffrn_scan_frame_axis.displacement_rstrt_incr</a> (e.g.
the mean).
;
_item.name '<a href="#_diffrn_scan_axis.displacement_rstrt_incr">_diffrn_scan_axis.displacement_rstrt_incr</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_axis.reference_angle">_diffrn_scan_axis.reference_angle</a>
_item_description.description
; The setting of the specified axis in degrees
against which measurements of the reference beam center
and reference detector distance should be made.
In general, this will agree with
<a href="#_diffrn_scan_frame_axis.reference_angle">_diffrn_scan_frame_axis.reference_angle</a>.
If the individual frame values vary, then the value of
<a href="#_diffrn_scan_axis.reference_angle">_diffrn_scan_axis.reference_angle</a> will be
representative of the ensemble of values of
<a href="#_diffrn_scan_frame_axis.reference_angle">_diffrn_scan_frame_axis.reference_angle</a> (e.g.
the mean).
If not specified, the value defaults to zero.
;
_item.name '<a href="#_diffrn_scan_axis.reference_angle">_diffrn_scan_axis.reference_angle</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code implicit
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_axis.reference_displacement">_diffrn_scan_axis.reference_displacement</a>
_item_description.description
; The setting of the specified axis in millimetres
against which measurements of the reference beam center
and reference detector distance should be made.
In general, this will agree with
<a href="#_diffrn_scan_frame_axis.reference_displacement">_diffrn_scan_frame_axis.reference_displacement</a>.
If the individual frame values vary, then the value of
<a href="#_diffrn_scan_axis.reference_displacement">_diffrn_scan_axis.reference_displacement</a> will be
representative of the ensemble of values of
<a href="#_diffrn_scan_frame_axis.reference_displacement">_diffrn_scan_frame_axis.reference_displacement</a> (e.g.
the mean).
If not specified, the value defaults to to the value of
<a href="#">_diffrn_scan_axis.displacement</a>.
;
_item.name '<a href="#_diffrn_scan_axis.reference_displacement">_diffrn_scan_axis.reference_displacement</a>'
_item.category_id diffrn_scan_axis
_item.mandatory_code implicit
_item_type.code float
_item_units.code 'millimetres'
save_
#####################
# <a name="DIFFRN_SCAN_FRAME">DIFFRN_SCAN_FRAME</a> #
#####################
save_DIFFRN_SCAN_FRAME
_category.description
; Data items in the <a href="#DIFFRN_SCAN_FRAME">DIFFRN_SCAN_FRAME</a> category describe
the relationships of particular frames to scans.
;
_category.id diffrn_scan_frame
_category.mandatory_code no
loop_
_category_key.name
'<a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>'
'<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
save_
save_<a name="_diffrn_scan_frame.date">_diffrn_scan_frame.date</a>
_item_description.description
; The date and time of the start of the frame being scanned.
;
_item.name '<a href="#_diffrn_scan_frame.date">_diffrn_scan_frame.date</a>'
_item.category_id diffrn_scan_frame
_item.mandatory_code no
_item_type.code yyyy-mm-dd
save_
save_<a name="_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>
_item_description.description
; The value of this data item is the identifier of the
frame being examined.
This item is a pointer to <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a> in the
<a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category.
;
_item.name '<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>'
_item.category_id diffrn_scan_frame
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan_frame.frame_number" >_diffrn_scan_frame.frame_number</a>
_item_description.description
; The value of this data item is the number of the frame
within the scan, starting with 1. It is not necessarily
the same as the value of <a href="#_diffrn_scan_frame.frame_id">_diffrn_scan_frame.frame_id</a>,
but it may be.
;
_item.name '<a href="#_diffrn_scan_frame.frame_number" >_diffrn_scan_frame.frame_number</a>'
_item.category_id diffrn_scan_frame
_item.mandatory_code no
_item_type.code int
loop_
_item_range.maximum
_item_range.minimum
. 0
0 0
save_
save_<a name="_diffrn_scan_frame.integration_time">_diffrn_scan_frame.integration_time</a>
_item_description.description
; The time in seconds to integrate this step of the scan.
This should be the precise time of integration of each
particular frame. The value of this data item should
be given explicitly for each frame and not inferred
from the value of <a href="#_diffrn_scan.integration_time" >_diffrn_scan.integration_time</a>.
;
_item.name '<a href="#_diffrn_scan_frame.integration_time" >_diffrn_scan_frame.integration_time</a>'
_item.category_id diffrn_scan_frame
_item.mandatory_code yes
_item_type.code float
_item_units.code 'seconds'
loop_
_item_range.maximum
_item_range.minimum
. 0.0
save_
save_<a name="_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a>
_item_description.description
; The value of <a href="#_diffrn_scan_frame.scan_id" >_diffrn_scan_frame.scan_id</a> identifies the scan
containing this frame.
This item is a pointer to <a href="#_diffrn_scan.id" >_diffrn_scan.id</a> in the
<a href="#DIFFRN_SCAN">DIFFRN_SCAN</a> category.
;
_item.name '<a href="#_diffrn_scan_frame.scan_id">_diffrn_scan_frame.scan_id</a>'
_item.category_id diffrn_scan_frame
_item.mandatory_code yes
_item_type.code code
save_
##########################
# <a name="DIFFRN_SCAN_FRAME_AXIS">DIFFRN_SCAN_FRAME_AXIS</a> #
##########################
save_DIFFRN_SCAN_FRAME_AXIS
_category.description
; Data items in the <a href="#DIFFRN_SCAN_FRAME_AXIS">DIFFRN_SCAN_FRAME_AXIS</a> category describe the
settings of axes for particular frames. Unspecified axes are
assumed to be at their zero points. If, for any given frame,
nonzero values apply for any of the data items in this category,
those values should be given explicitly in this category and not
simply inferred from values in <a href="#DIFFRN_SCAN_AXIS">DIFFRN_SCAN_AXIS</a>.
;
_category.id diffrn_scan_frame_axis
_category.mandatory_code no
loop_
_category_key.name
'<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>'
'<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>'
loop_
_category_group.id 'inclusive_group'
'diffrn_group'
save_
save_<a name="_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>
_item_description.description
; The value of this data item is the identifier of one of
the axes for the frame for which settings are being specified.
Multiple axes may be specified for the same value of
<a href="#_diffrn_scan_frame.id" >_diffrn_scan_frame.frame_id</a>.
This item is a pointer to <a href="#_axis.id" >_axis.id</a> in the
<a href="#AXIS">AXIS</a> category.
;
_item.name '<a href="#_diffrn_scan_frame_axis.axis_id" >_diffrn_scan_frame_axis.axis_id</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a>
_item_description.description
; The setting of the specified axis in degrees for this frame.
This is the setting at the start of the integration time.
;
_item.name '<a href="#_diffrn_scan_frame_axis.angle" >_diffrn_scan_frame_axis.angle</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a>
_item_description.description
; The increment for this frame for the angular setting of
the specified axis in degrees. The sum of the values
of <a href="#_diffrn_scan_frame_axis.angle">_diffrn_scan_frame_axis.angle</a> and
<a href="#_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a> is the
angular setting of the axis at the end of the integration
time for this frame.
;
_item.name '<a href="#_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_frame_axis.angle_rstrt_incr">_diffrn_scan_frame_axis.angle_rstrt_incr</a>
_item_description.description
; The increment after this frame for the angular setting of
the specified axis in degrees. The sum of the values
of <a href="#_diffrn_scan_frame_axis.angle">_diffrn_scan_frame_axis.angle</a>,
<a href="#_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a> and
<a href="#_diffrn_scan_frame_axis.angle_rstrt_incr">_diffrn_scan_frame_axis.angle_rstrt_incr</a> is the
angular setting of the axis at the start of the integration
time for the next frame and should equal
<a href="#_diffrn_scan_frame_axis.angle">_diffrn_scan_frame_axis.angle</a> for this next frame.
;
_item.name '<a href="#_diffrn_scan_frame_axis.angle_rstrt_incr">_diffrn_scan_frame_axis.angle_rstrt_incr</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>
_item_description.description
; The setting of the specified axis in millimetres for this
frame. This is the setting at the start of the integration
time.
;
_item.name '<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_frame_axis.displacement_increment">_diffrn_scan_frame_axis.displacement_increment</a>
_item_description.description
; The increment for this frame for the displacement setting of
the specified axis in millimetres. The sum of the values
of <a href="#_diffrn_scan_frame_axis.displacement">_diffrn_scan_frame_axis.displacement</a> and
<a href="#_diffrn_scan_frame_axis.displacement_increment">_diffrn_scan_frame_axis.displacement_increment</a> is the
angular setting of the axis at the end of the integration
time for this frame.
;
_item.name '<a href="#_diffrn_scan_frame_axis.displacement_increment">_diffrn_scan_frame_axis.displacement_increment</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_frame_axis.displacement_rstrt_incr">_diffrn_scan_frame_axis.displacement_rstrt_incr</a>
_item_description.description
; The increment for this frame for the displacement setting of
the specified axis in millimetres. The sum of the values
of <a href="#_diffrn_scan_frame_axis.displacement">_diffrn_scan_frame_axis.displacement</a>,
<a href="#_diffrn_scan_frame_axis.displacement_increment">_diffrn_scan_frame_axis.displacement_increment</a> and
<a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr">_diffrn_scan_frame_axis.displacement_rstrt_incr</a> is the
angular setting of the axis at the start of the integration
time for the next frame and should equal
<a href="#_diffrn_scan_frame_axis.displacement">_diffrn_scan_frame_axis.displacement</a> for this next frame.
;
_item.name '<a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr">_diffrn_scan_frame_axis.displacement_rstrt_incr</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code no
_item_default.value 0.0
_item_type.code float
_item_units.code 'millimetres'
save_
save_<a name="_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>
_item_description.description
; The value of this data item is the identifier of the
frame for which axis settings are being specified.
Multiple axes may be specified for the same value of
<a href="#_diffrn_scan_frame.frame_id" >_diffrn_scan_frame.frame_id</a>.
This item is a pointer to <a href="#_diffrn_data_frame.id" >_diffrn_data_frame.id</a> in the
<a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category.
;
_item.name '<a href="#_diffrn_scan_frame_axis.frame_id" >_diffrn_scan_frame_axis.frame_id</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_scan_frame_axis.reference_angle" >_diffrn_scan_frame_axis.reference_angle</a>
_item_description.description
; The setting of the specified axis in degrees
against which measurements of the reference beam center
and reference detector distance should be made.
This is normally the same for all frames, but the
option is provided here of making changes when
needed.
If not provided, it is assumed to be zero.
;
_item.name '<a href="#_diffrn_scan_frame_axis.reference_angle">_diffrn_scan_frame_axis.reference_angle</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code implicit
_item_default.value 0.0
_item_type.code float
_item_units.code 'degrees'
save_
save_<a name="_diffrn_scan_frame_axis.reference_displacement">_diffrn_scan_frame_axis.reference_displacement</a>
_item_description.description
; The setting of the specified axis in millimetres for this
frame against which measurements of the reference beam center
and reference detector distance should be made.
This is normally the same for all frames, but the
option is provided here of making changes when
needed.
If not provided, it is assumed to be equal to
<a href="#_diffrn_scan_frame_axis.displacement" >_diffrn_scan_frame_axis.displacement</a>.
;
_item.name '<a href="#_diffrn_scan_frame_axis.reference_displacement">_diffrn_scan_frame_axis.reference_displacement</a>'
_item.category_id diffrn_scan_frame_axis
_item.mandatory_code implicit
_item_type.code float
_item_units.code 'millimetres'
save_
#######
# <a name="MAP">MAP</a> #
#######
save_MAP
_category.description
; Data items in the <a href="#MAP">MAP</a> category record
the details of a maps. Maps record values of parameters,
such as density, that are functions of position within
a cell or are functions of orthogonal coordinates in
three space.
A map may is composed of one or more map segments
specified in the MAP_SEGMENT category.
Examples are given in the MAP_SEGMENT category.
;
_category.id map
_category.mandatory_code no
loop_
_category_key.name '<a href="#_map.id" >_map.id</a>'
'<a href="#_map.diffrn_id" >_map.diffrn_id</a>'
'<a href="#_map.entry_id" >_map.entry_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - Identifying an observed density map
and a calculated density map
;
;
loop_
<a href="#_map.id" >_map.id</a>
<a href="#_map.details" >_map.details</a>
rho_calc
;
density calculated from F_calc derived from the ATOM_SITE list
;
rho_obs
;
density combining the observed structure factors with the
calculated phases
;
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_map.details" >_map.details</a>
_item_description.description
; The value of <a href="#_map.details" >_map.details</a> should give a
description of special aspects of each map.
;
_item.name '<a name="_map.details" >_map.details</a>'
_item.category_id map
_item.mandatory_code no
_item_type.code text
loop_
_item_examples.case
_item_examples.detail
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - Identifying an observed density map
and a calculated density map
;
;
loop_
<a href="#_map.id" >_map.id</a>
<a href="#_map.details" >_map.details</a>
rho_calc
;
density calculated from F_calc derived from the ATOM_SITE list
;
rho_obs
;
density combining the observed structure factors with the
calculated phases
;
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_map.diffrn_id" >_map.diffrn_id</a>
_item_description.description
; This item is a pointer to <a href="#_diffrn.id" >_diffrn.id</a> in the
<a href="#DIFFRN">DIFFRN</a> category.
;
_item.name '<a href="#_map.diffrn_id" >_map.diffrn_id</a>'
_item.category_id map
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_map.entry_id" >_map.entry_id</a>
_item_description.description
; This item is a pointer to <a href="#_entry.id" >_entry.id</a> in the
<a href="#ENTRY">ENTRY</a> category.
;
_item.name '<a href="#_map.entry_id" >_map.entry_id</a>'
_item.category_id map
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_map.id" >_map.id</a>
_item_description.description
; The value of <a href="#_map.id" >_map.id</a> must uniquely identify
each map for the given diffrn.id or entry.id.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_map.id" >_map.id</a>' map yes
'<a href="#_map_segment.id" >_map_segment.id</a>' map_segment yes
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_map_segment.id" >_map_segment.id</a>' '<a href="#_map.id" >_map.id</a>'
save_
###########################
# <a name="MAP_SEGMENT">MAP_SEGMENT</a> #
###########################
save_MAP_SEGMENT
_category.description
; Data items in the <a href="#MAP_SEGMENT">MAP_SEGMENT</a> category record
the details about each segment (section or brick) of a map.
;
_category.id map_segment
_category.mandatory_code no
loop_
_category_key.name '<a href="#_map_segment.id" >_map_segment.id</a>'
'<a href="#_map_segment.map_id" >_map_segment.map_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
; Example 1 - Identifying an observed density map
and a calculated density map, each consisting of one
segment, both using the same array structure
and mask.
;
;
loop_
<a href="#_map.id" >_map.id</a>
<a href="#_map.details" >_map.details</a>
rho_calc
;
density calculated from F_calc derived from the ATOM_SITE list
;
rho_obs
;
density combining the observed structure factors with the
calculated phases
;
loop_
_map_segment.map_id
_map_segment.id
_map_segment.array_id
_map_segment.binary_id
_map_segment.mask_array_id
_map_segment.mask_binary_id
rho_calc rho_calc map_structure 1 mask_structure 1
rho_obs rho_obs map_structure 2 mask_structure 1
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_map_segment.array_id" >_map_segment.array_id</a>
_item_description.description
; The value of _map_segment.array_id identifies the array structure
into which the map is organized.
This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
;
_item.name '<a href="#_map_segement.array_id" >_map_segment.array_id</a>'
_item.category_id map_segment
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_map_segment.binary_id" >_map_segment.binary_id</a>
_item_description.description
; The value of <a href="#_map_segment.binary_id">_map_segment.binary_id</a> distinguishes the particular
set of data organized according to <a href="#_map_segment.mask_array_id">_map_segment.array_id</a> in
which the data values of the map are stored.
This item is a pointer to <a href="#_array_data.binary_id" >_array_data.binary_id</a> in the
<a href="#ARRAY_DATA">ARRAY_DATA</a> category.
;
_item.name '<a href="#_map_segment.binary_id" >_map_segment.binary_id</a>'
_item.category_id map_segment
_item.mandatory_code implicit
_item_type.code int
save_
save_<a name="_map_segment.mask_array_id" >_map_segment.mask_array_id</a>
_item_description.description
; The value of <a href="#_map_segment.mask_array_id">_map_segment.mask_array_id</a>, if given, the array
structure into which the mask for the map is organized. If no
value is given, then all elements of the map are valid. If a
value is given, then only elements of the map for which the
corresponding element of the mask is non-zero are valid. The
value of <a href="#_map_segment.mask_array_id">_map_segment.mask_array_id</a> differs from the value of
<a href="#_map_segment.array_id">_map_segment.array_id</a> in order to permit the mask to be given
as, say, unsigned 8-bit integers, while the map is given as
a data type with more range. However, the two array structures
must be aligned, using the same axes in the same order with the
same displacements and increments
This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> category.
;
_item.name '<a href="#_map_segment.mask_array_id" >_map_segment.mask_array_id</a>'
_item.category_id map_segment
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_map_segment.mask_binary_id" >_map_segment.mask_binary_id</a>
_item_description.description
; The value of <a href="#_map_segment.mask_binary_id">_map_segment.mask_binary_id</a> identifies the
particular set of data organized according to
_map_segment.mask_array_id specifying the mask for the map.
This item is a pointer to <a href="#_array_data.mask_binary_id" >_array_data.mask_binary_id</a> in the
<a href="#ARRAY_DATA">ARRAY_DATA</a> category.
;
_item.name '<a href="#_map_segment.mask_binary_id" >_map_segment.mask_binary_id</a>'
_item.category_id map_segment
_item.mandatory_code implicit
_item_type.code int
save_
save_<a name="_map_segment.id" >_map_segment.id</a>
_item_description.description
; The value of <a href="#_map_segment.id" >_map_segment.id</a> must uniquely
identify each segment of a map.
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_map_segment.id" >_map_segment.id</a>'
map_segment
yes
_item_type.code code
loop_
_item_linked.child_name
_item_linked.parent_name
'<a href="#_map_data_frame.map_segment_id" >_map_data_frame.map_segment_id</a>'
'<a href="#_map_segment.id" >_map_segment.id</a>'
save_
save_<a name="_map_segment.map_id" >_map_segment.map_id</a>
_item_description.description
; This item is a pointer to <a href="#_map.id" >_map.id</a>
in the <a href="#MAP">MAP</a> category.
;
_item.name '<a href="#_map_segment.map_id" >_map_segment.map_id</a>'
_item.category_id map_segment
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_map_segment.details" >_map_segment.details</a>
_item_description.description
; The value of <a href="#_map_segment.details" >_map_segment.details</a> should give a
description of special aspects of each segment of a map.
;
_item.name '<a name="_map_segment.details" >_map_segment.details</a>'
_item.category_id map_segment
_item.mandatory_code no
_item_type.code text
loop_
_item_examples.case
_item_examples.detail
; Example to be provided
;
;
;
save_
######################## DEPRECATED DATA ITEMS ########################
save_<a name="_diffrn_detector_axis.id">_diffrn_detector_axis.id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn_detector.id">_diffrn_detector.id</a> in
the <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> category.
DEPRECATED -- DO NOT USE
;
_item.name '<a href="#_diffrn_detector_axis.id">_diffrn_detector_axis.id</a>'
_item.category_id diffrn_detector_axis
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_detector_element.center[1]" >_diffrn_detector_element.center[1]</a>
_item_description.description
; The value of <a href="#_diffrn_detector_element.center[1]" >_diffrn_detector_element.center[1]</a> is the <b>X</b>
component of the distortion-corrected beam centre in
millimetres from the (0, 0) (lower-left) corner of the
detector element viewed from the sample side.
The <b>X</b> and <b>Y</b> axes are the laboratory coordinate system
coordinates defined in the <a href="#AXIS">AXIS category</a> measured
when all positioning axes for the detector are at their zero
settings. If the resulting <b>X</b> or <b>Y</b> axis is then orthogonal to the
detector, the <b>Z</b> axis is used instead of the orthogonal axis.
Because of ambiguity about the setting used to determine this center,
use of this data item is deprecated. The data item
<a href="#_diffrn_data_frame.center_fast">_diffrn_data_frame.center_fast</a>
which is referenced to the detector coordinate system and not
directly to the laboratory coordinate system should be used instead.
;
_item.name '<a href="#_diffrn_detector_element.center[1]" >_diffrn_detector_element.center[1]</a>'
_item.category_id diffrn_detector_element
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
_item_units.code millimetres
save_
save_<a name="_diffrn_detector_element.center[2]" >_diffrn_detector_element.center[2]</a>
_item_description.description
; The value of <a href="#_diffrn_detector_element.center[2]" >_diffrn_detector_element.center[2]</a> is the <b>Y</b>
component of the distortion-corrected beam centre in
millimetres from the (0, 0) (lower-left) corner of the
detector element viewed from the sample side.
The <b>X</b> and <b>Y</b> axes are the laboratory coordinate system
coordinates defined in the <a href="#AXIS">AXIS category</a> measured
when all positioning axes for the detector are at their zero
settings. If the resulting <b>X</b> or <b>Y</b> axis is then orthogonal to the
detector, the <b>Z</b> axis is used instead of the orthogonal axis.
Because of ambiguity about the setting used to determine this center,
use of this data item is deprecated. The data item
<a href="#_diffrn_data_frame.center_slow">_diffrn_data_frame.center_slow</a>
which is referenced to the detector coordinate system and not
directly to the laboratory coordinate system should be used instead.
;
_item.name '<a href="#_diffrn_detector_element.center[2]" >_diffrn_detector_element.center[2]</a>'
_item.category_id diffrn_detector_element
_item.mandatory_code no
_item_default.value 0.0
_item_sub_category.id vector
_item_type.code float
_item_units.code millimetres
save_
save_<a name="_diffrn_measurement_axis.id">_diffrn_measurement_axis.id</a>
_item_description.description
; This data item is a pointer to <a href="#_diffrn_measurement.id">_diffrn_measurement.id</a> in
the <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> category.
DEPRECATED -- DO NOT USE
;
_item.name '<a href="#_diffrn_measurement_axis.id">_diffrn_measurement_axis.id</a>'
_item.category_id diffrn_measurement_axis
_item.mandatory_code yes
_item_type.code code
save_
######################### DEPRECATED CATEGORY #########################
#####################
# <a name="DIFFRN_FRAME_DATA" >DIFFRN_FRAME_DATA</a> #
#####################
save_DIFFRN_FRAME_DATA
_category.description
; Data items in the DIFFRN_FRAME_DATA category record
the details about each frame of data.
The items in this category are now in the
<a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a> category.
The items in the DIFFRN_FRAME_DATA category
are now deprecated. The items from this category
are provided as aliases in the 1.0 dictionary
or, in the case of _diffrn_frame_data.details,
in the 1.4 dictionary. THESE ITEMS SHOULD NOT
BE USED FOR NEW WORK.
The items from the old category are provided
in this dictionary for completeness
but should not be used or cited. To avoid
confusion, the example has been removed
and the redundant parent-child links to other
categories have been removed.
;
_category.id diffrn_frame_data
_category.mandatory_code no
loop_
_category_key.name '<a href="#_diffrn_frame_data.id" >_diffrn_frame_data.id</a>'
'<a href="#_diffrn_frame_data.detector_element_id" >_diffrn_frame_data.detector_element_id</a>'
loop_
_category_group.id 'inclusive_group'
'array_data_group'
loop_
_category_examples.detail
_category_examples.case
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
;
THE DIFFRN_FRAME_DATA category is deprecated and should not be used.
;
;
# EXAMPLE REMOVED #
;
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
save_
save_<a name="_diffrn_frame_data.array_id" >_diffrn_frame_data.array_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_structure.id" >_array_structure.id</a> in the
ARRAY_STRUCTURE category.
DEPRECATED -- DO NOT USE
;
_item.name '<a href="#_diffrn_frame_data.array_id" >_diffrn_frame_data.array_id</a>'
_item.category_id diffrn_frame_data
_item.mandatory_code implicit
_item_type.code code
save_
save_<a name="_diffrn_frame_data.binary_id" >_diffrn_frame_data.binary_id</a>
_item_description.description
; This item is a pointer to <a href="#_array_data.binary_id" >_array_data.binary_id</a> in the
ARRAY_STRUCTURE category.
DEPRECATED -- DO NOT USE
;
_item.name '<a href="#_diffrn_frame_data.binary_id" >_diffrn_frame_data.binary_id</a>'
_item.category_id diffrn_frame_data
_item.mandatory_code implicit
_item_type.code int
save_
save_<a name="_diffrn_frame_data.detector_element_id" >_diffrn_frame_data.detector_element_id</a>
_item_description.description
; This item is a pointer to <a href="#_diffrn_detector_element.id">_diffrn_detector_element.id</a>
in the DIFFRN_DETECTOR_ELEMENT category.
DEPRECATED -- DO NOT USE
;
_item.name '<a href="#_diffrn_frame_data.detector_element_id" >_diffrn_frame_data.detector_element_id</a>'
_item.category_id diffrn_frame_data
_item.mandatory_code yes
_item_type.code code
save_
save_<a name="_diffrn_frame_data.id" >_diffrn_frame_data.id</a>
_item_description.description
; The value of <a href="#_diffrn_frame_data.id" >_diffrn_frame_data.id</a> must uniquely identify
each complete frame of data.
DEPRECATED -- DO NOT USE
;
loop_
_item.name
_item.category_id
_item.mandatory_code
'<a href="#_diffrn_frame_data.id" >_diffrn_frame_data.id</a>' diffrn_frame_data yes
_item_type.code code
save_
save_<a name="_diffrn_frame_data.details" >_diffrn_frame_data.details</a>
_item_description.description
; The value of <a href="#_diffrn_data_frame.details" >_diffrn_data_frame.details</a> should give a
description of special aspects of each frame of data.
DEPRECATED -- DO NOT USE
;
_item.name '<a name="_diffrn_frame_data.details" >_diffrn_frame_data.details</a>'
_item.category_id diffrn_frame_data
_item.mandatory_code no
_item_type.code text
save_
################ END DEPRECATED SECTION ###########
####################
## <a name="ITEM_TYPE_LIST">ITEM_TYPE_LIST</a> ##
####################
#
#
# The regular expressions defined here are not compliant
# with the POSIX 1003.2 standard as they include the
# '\n' and '\t' special characters. These regular expressions
# have been tested using version 0.12 of Richard Stallman's
# GNU regular expression library in POSIX mode.
# In order to allow presentation of a regular expression
# in a text field concatenate any line ending in a backslash
# with the following line, after discarding the backslash.
#
# A formal definition of the '\n' and '\t' special characters
# is most properly done in the DDL, but for completeness, please
# note that '\n' is the line termination character ('newline')
# and '\t' is the horizontal tab character. There is a formal
# ambiguity in the use of '\n' for line termination, in that
# the intention is that the equivalent machine/OS-dependent line
# termination character sequence should be accepted as a match, e.g.
#
# '\r' (control-M) under MacOS
# '\n' (control-J) under Unix
# '\r\n' (control-M control-J) under DOS and MS Windows
#
loop_
_item_type_list.code
_item_type_list.primitive_code
_item_type_list.construct
_item_type_list.detail
code char
'[_,.;:"&<>()/\{}'`~!@#$%A-Za-z0-9*|+-]*'
; code item types/single words ...
;
ucode uchar
'[_,.;:"&<>()/\{}'`~!@#$%A-Za-z0-9*|+-]*'
; code item types/single words (case insensitive) ...
;
line char
'[][ \t_(),.;:"&<>/\{}'`~!@#$%?+=*A-Za-z0-9|^-]*'
; char item types / multi-word items ...
;
uline uchar
'[][ \t_(),.;:"&<>/\{}'`~!@#$%?+=*A-Za-z0-9|^-]*'
; char item types / multi-word items (case insensitive)...
;
text char
'[][ \n\t()_,.;:"&<>/\{}'`~!@#$%?+=*A-Za-z0-9|^-]*'
; text item types / multi-line text ...
;
binary char
;\n--CIF-BINARY-FORMAT-SECTION--\n\
[][ \n\t()_,.;:"&<>/\{}'`~!@#$%?+=*A-Za-z0-9|^-]*\
\n--CIF-BINARY-FORMAT-SECTION----
;
; binary items are presented as MIME-like ascii-encoded
sections in an imgCIF. In a CBF, raw octet streams
are used to convey the same information.
;
int numb
'-?[0-9]+'
; int item types are the subset of numbers that are the negative
or positive integers.
;
float numb
'-?(([0-9]+)[.]?|([0-9]*[.][0-9]+))([(][0-9]+[)])?([eE][+-]?[0-9]+)?'
; float item types are the subset of numbers that are the floating
point numbers.
;
any char
'.*'
; A catch all for items that may take any form...
;
yyyy-mm-dd char
;\
[0-9]?[0-9]?[0-9][0-9]-[0-9]?[0-9]-[0-9]?[0-9]\
((T[0-2][0-9](:[0-5][0-9](:[0-5][0-9](.[0-9]+)?)?)?)?\
([+-][0-5][0-9]:[0-5][0-9]))?
;
;
Standard format for CIF date and time strings (see
http://www.iucr.org/iucr-top/cif/spec/datetime.html),
consisting of a yyyy-mm-dd date optionally followed by
the character 'T' followed by a 24-hour clock time,
optionally followed by a signed time-zone offset.
The IUCr standard has been extended to allow for an optional
decimal fraction on the seconds of time.
Time is local time if no time-zone offset is given.
Note that this type extends the mmCIF yyyy-mm-dd type
but does not conform to the mmCIF yyyy-mm-dd:hh:mm
type that uses a ':' in place if the 'T' specified
by the IUCr standard. For reading, both forms should
be accepted, but for writing, only the IUCr form should
be used.
For maximal compatibility, the special time zone
indicator 'Z' (for 'zulu') should be accepted on
reading in place of '+00:00' for GMT.
;
#####################
## <a name="ITEM_UNITS_LIST">ITEM_UNITS_LIST</a> ##
#####################
loop_
_item_units_list.code
_item_units_list.detail
#
'metres' 'metres'
'centimetres' 'centimetres (metres * 10^<sup>( -2)</sup>^)'
'millimetres' 'millimetres (metres * 10^<sup>( -3)</sup>^)'
'nanometres' 'nanometres (metres * 10^<sup>( -9)</sup>^)'
'angstroms' '\%Angstroms (metres * 10^<sup>(-10)</sup>^)'
'picometres' 'picometres (metres * 10^<sup>(-12)</sup>^)'
'femtometres' 'femtometres (metres * 10^<sup>(-15)</sup>^)'
#
'reciprocal_metres' 'reciprocal metres (metres^<sup>(-1)</sup>^)'
'reciprocal_centimetres'
'reciprocal centimetres ((metres * 10^<sup>( -2)</sup>^)^<sup>(-1)</sup>^)'
'reciprocal_millimetres'
'reciprocal millimetres ((metres * 10^<sup>( -3)</sup>^)^<sup>(-1)</sup>^)'
'reciprocal_nanometres'
'reciprocal nanometres ((metres * 10^<sup>( -9)</sup>^)^<sup>(-1)</sup>^)'
'reciprocal_angstroms'
'reciprocal \%Angstroms ((metres * 10^<sup>(-10)</sup>^)^<sup>(-1)</sup>^)'
'reciprocal_picometres'
'reciprocal picometres ((metres * 10^<sup>(-12)</sup>^)^<sup>(-1)</sup>^)'
#
'nanometres_squared' 'nanometres squared (metres * 10^<sup>( -9)</sup>^)^<sup>2</sup>^'
'angstroms_squared' '\%Angstroms squared (metres * 10^<sup>(-10)</sup>^)^<sup>2</sup>^'
'8pi2_angstroms_squared'
'8\p^<sup>2</sup>^ * \%Angstroms squared (metres * 10^<sup>(-10)</sup>^)^<sup>2</sup>^'
'picometres_squared' 'picometres squared (metres * 10^<sup>(-12)</sup>^)^<sup>2</sup>^'
#
'nanometres_cubed' 'nanometres cubed (metres * 10^<sup>( -9)</sup>^)^<sup>3</sup>^'
'angstroms_cubed' '\%Angstroms cubed (metres * 10^<sup>(-10)</sup>^)^<sup>3</sup>^'
'picometres_cubed' 'picometres cubed (metres * 10^<sup>(-12)</sup>^)^<sup>3</sup>^'
#
'kilopascals' 'kilopascals'
'gigapascals' 'gigapascals'
#
'hours' 'hours'
'minutes' 'minutes'
'seconds' 'seconds'
'microseconds' 'microseconds'
#
'degrees' 'degrees (of arc)'
'degrees_squared' 'degrees (of arc) squared'
#
'degrees_per_minute' 'degrees (of arc) per minute'
#
'celsius' 'degrees (of temperature) Celsius'
'kelvins' 'degrees (of temperature) Kelvin'
#
'counts' 'counts'
'counts_per_photon' 'counts per photon'
#
'electrons' 'electrons'
#
'electrons_squared' 'electrons squared'
#
'electrons_per_nanometres_cubed'
; electrons per nanometres cubed (electrons/(metres * 10^<sup>( -9)</sup>^)^<sup>(-3)</sup>^)
;
'electrons_per_angstroms_cubed'
; electrons per \%Angstroms cubed (electrons/(metres * 10^<sup>(-10)</sup>^)^<sup>(-3)</sup>^)
;
'electrons_per_picometres_cubed'
; electrons per picometres cubed (electrons/(metres * 10^<sup>(-12)</sup>^)^<sup>(-3)</sup>^)
;
'kilowatts' 'kilowatts'
'milliamperes' 'milliamperes'
'kilovolts' 'kilovolts'
#
'pixels_per_element' '(image) pixels per (array) element'
#
'arbitrary'
; arbitrary system of units.
;
#
loop_
_item_units_conversion.from_code
_item_units_conversion.to_code
_item_units_conversion.operator
_item_units_conversion.factor
###
'metres' 'centimetres' '*' 1.0E+02
'metres' 'millimetres' '*' 1.0E+03
'metres' 'nanometres' '*' 1.0E+09
'metres' 'angstroms' '*' 1.0E+10
'metres' 'picometres' '*' 1.0E+12
'metres' 'femtometres' '*' 1.0E+15
#
'centimetres' 'metres' '*' 1.0E-02
'centimetres' 'millimetres' '*' 1.0E+01
'centimetres' 'nanometres' '*' 1.0E+07
'centimetres' 'angstroms' '*' 1.0E+08
'centimetres' 'picometres' '*' 1.0E+10
'centimetres' 'femtometres' '*' 1.0E+13
#
'millimetres' 'metres' '*' 1.0E-03
'millimetres' 'centimetres' '*' 1.0E-01
'millimetres' 'nanometres' '*' 1.0E+06
'millimetres' 'angstroms' '*' 1.0E+07
'millimetres' 'picometres' '*' 1.0E+09
'millimetres' 'femtometres' '*' 1.0E+12
#
'nanometres' 'metres' '*' 1.0E-09
'nanometres' 'centimetres' '*' 1.0E-07
'nanometres' 'millimetres' '*' 1.0E-06
'nanometres' 'angstroms' '*' 1.0E+01
'nanometres' 'picometres' '*' 1.0E+03
'nanometres' 'femtometres' '*' 1.0E+06
#
'angstroms' 'metres' '*' 1.0E-10
'angstroms' 'centimetres' '*' 1.0E-08
'angstroms' 'millimetres' '*' 1.0E-07
'angstroms' 'nanometres' '*' 1.0E-01
'angstroms' 'picometres' '*' 1.0E+02
'angstroms' 'femtometres' '*' 1.0E+05
#
'picometres' 'metres' '*' 1.0E-12
'picometres' 'centimetres' '*' 1.0E-10
'picometres' 'millimetres' '*' 1.0E-09
'picometres' 'nanometres' '*' 1.0E-03
'picometres' 'angstroms' '*' 1.0E-02
'picometres' 'femtometres' '*' 1.0E+03
#
'femtometres' 'metres' '*' 1.0E-15
'femtometres' 'centimetres' '*' 1.0E-13
'femtometres' 'millimetres' '*' 1.0E-12
'femtometres' 'nanometres' '*' 1.0E-06
'femtometres' 'angstroms' '*' 1.0E-05
'femtometres' 'picometres' '*' 1.0E-03
###
'reciprocal_centimetres' 'reciprocal_metres' '*' 1.0E+02
'reciprocal_centimetres' 'reciprocal_millimetres' '*' 1.0E-01
'reciprocal_centimetres' 'reciprocal_nanometres' '*' 1.0E-07
'reciprocal_centimetres' 'reciprocal_angstroms' '*' 1.0E-08
'reciprocal_centimetres' 'reciprocal_picometres' '*' 1.0E-10
#
'reciprocal_millimetres' 'reciprocal_metres' '*' 1.0E+03
'reciprocal_millimetres' 'reciprocal_centimetres' '*' 1.0E+01
'reciprocal_millimetres' 'reciprocal_nanometres' '*' 1.0E-06
'reciprocal_millimetres' 'reciprocal_angstroms' '*' 1.0E-07
'reciprocal_millimetres' 'reciprocal_picometres' '*' 1.0E-09
#
'reciprocal_nanometres' 'reciprocal_metres' '*' 1.0E+09
'reciprocal_nanometres' 'reciprocal_centimetres' '*' 1.0E+07
'reciprocal_nanometres' 'reciprocal_millimetres' '*' 1.0E+06
'reciprocal_nanometres' 'reciprocal_angstroms' '*' 1.0E-01
'reciprocal_nanometres' 'reciprocal_picometres' '*' 1.0E-03
#
'reciprocal_angstroms' 'reciprocal_metres' '*' 1.0E+10
'reciprocal_angstroms' 'reciprocal_centimetres' '*' 1.0E+08
'reciprocal_angstroms' 'reciprocal_millimetres' '*' 1.0E+07
'reciprocal_angstroms' 'reciprocal_nanometres' '*' 1.0E+01
'reciprocal_angstroms' 'reciprocal_picometres' '*' 1.0E-02
#
'reciprocal_picometres' 'reciprocal_metres' '*' 1.0E+12
'reciprocal_picometres' 'reciprocal_centimetres' '*' 1.0E+10
'reciprocal_picometres' 'reciprocal_millimetres' '*' 1.0E+09
'reciprocal_picometres' 'reciprocal_nanometres' '*' 1.0E+03
'reciprocal_picometres' 'reciprocal_angstroms' '*' 1.0E+01
###
'nanometres_squared' 'angstroms_squared' '*' 1.0E+02
'nanometres_squared' 'picometres_squared' '*' 1.0E+06
#
'angstroms_squared' 'nanometres_squared' '*' 1.0E-02
'angstroms_squared' 'picometres_squared' '*' 1.0E+04
'angstroms_squared' '8pi2_angstroms_squared' '*' 78.9568
#
'picometres_squared' 'nanometres_squared' '*' 1.0E-06
'picometres_squared' 'angstroms_squared' '*' 1.0E-04
###
'nanometres_cubed' 'angstroms_cubed' '*' 1.0E+03
'nanometres_cubed' 'picometres_cubed' '*' 1.0E+09
#
'angstroms_cubed' 'nanometres_cubed' '*' 1.0E-03
'angstroms_cubed' 'picometres_cubed' '*' 1.0E+06
#
'picometres_cubed' 'nanometres_cubed' '*' 1.0E-09
'picometres_cubed' 'angstroms_cubed' '*' 1.0E-06
###
'kilopascals' 'gigapascals' '*' 1.0E-06
'gigapascals' 'kilopascals' '*' 1.0E+06
###
'hours' 'minutes' '*' 6.0E+01
'hours' 'seconds' '*' 3.6E+03
'hours' 'microseconds' '*' 3.6E+09
#
'minutes' 'hours' '/' 6.0E+01
'minutes' 'seconds' '*' 6.0E+01
'minutes' 'microseconds' '*' 6.0E+07
#
'seconds' 'hours' '/' 3.6E+03
'seconds' 'minutes' '/' 6.0E+01
'seconds' 'microseconds' '*' 1.0E+06
#
'microseconds' 'hours' '/' 3.6E+09
'microseconds' 'minutes' '/' 6.0E+07
'microseconds' 'seconds' '/' 1.0E+06
###
'celsius' 'kelvins' '-' 273.0
'kelvins' 'celsius' '+' 273.0
###
'electrons_per_nanometres_cubed'
'electrons_per_angstroms_cubed' '*' 1.0E+03
'electrons_per_nanometres_cubed'
'electrons_per_picometres_cubed' '*' 1.0E+09
#
'electrons_per_angstroms_cubed'
'electrons_per_nanometres_cubed' '*' 1.0E-03
'electrons_per_angstroms_cubed'
'electrons_per_picometres_cubed' '*' 1.0E+06
#
'electrons_per_picometres_cubed'
'electrons_per_nanometres_cubed' '*' 1.0E-09
'electrons_per_picometres_cubed'
'electrons_per_angstroms_cubed' '*' 1.0E-06
###
########################
## <a name="DICTIONARY_HISTORY">DICTIONARY_HISTORY</a> ##
########################
loop_
_dictionary_history.version
_dictionary_history.update
_dictionary_history.revision
1.5.3 2007-07-08
; Changes to support SLS miniCBF and suggestions
from the 24 May 07 BNL imgCIF workshop (HJB)
+ Added new data items
'<a href="#_array_data.header_contents" >_array_data.header_contents</a>',
'<a href="#_array_data.header_convention" >_array_data.header_convention</a>',
'<a href="#_diffrn_data_frame.center_fast" >_diffrn_data_frame.center_fast</a>',
'<a href="#_diffrn_data_frame.center_slow" >_diffrn_data_frame.center_slow</a>',
'<a href="#_diffrn_data_frame.center_units" >_diffrn_data_frame.center_units</a>',
'<a href="#_diffrn_measurement.sample_detector_distance" >_diffrn_measurement.sample_detector_distance</a>',
'<a href="#_diffrn_measurement.sample_detector_voffset" >_diffrn_measurement.sample_detector_voffset</a>
+ Deprecated data items
'<a href="#_diffrn_detector_element.center[1]" >_diffrn_detector_element.center[1]</a>',
'<a href="#_diffrn_detector_element.center[2]" >_diffrn_detector_element.center[2]</a>'
+ Added comments and example on miniCBF
+ Changed all array_id data items to implicit
;
1.5.2 2007-05-06
; Further clarifications of the coordinate system. (HJB)
;
1.5.1 2007-04-26
; Improve defintion of X-axis to cover the case of no goniometer
and clean up more line folds (HJB)
;
1.5 2007-07-25
; This is a cummulative list of the changes proposed since the
imgCIF workshop in Hawaii in July 2006. It is the result
of contributions by H. J. Bernstein, A. Hammersley,
J. Wright and W. Kabsch.
2007-02-19 Consolidated changes (edited by HJB)
+ Added new data items
'<a href="#_array_structure.compression_type_flag" >_array_structure.compression_type_flag</a>',
'<a href="#_array_structure_list_axis.fract_displacement">_array_structure_list_axis.fract_displacement</a>',
'<a href="#_array_structure_list_axis.fract_displacement_increment" >_array_structure_list_axis.displacement_increment</a>',
'<a href="#_array_structure_list_axis.reference_angle" >_array_structure_list_axis.reference_angle</a>',
'<a href="#_array_structure_list_axis.reference_displacement" >_array_structure_list_axis.reference_displacement</a>',
'<a href="#_axis.sdystem" >_axis.system</a>',
'<a href="#_diffrn_detector_element.reference_center_fast" >_diffrn_detector_element.reference_center_fast</a>',
'<a href="#_diffrn_detector_element.reference_center_slow" >_diffrn_detector_element.reference_center_slow</a>',
'<a href="#_diffrn_scan_axis.reference_angle" >_diffrn_scan_axis.reference_angle</a>',
'<a href="#_diffrn_scan_axis.reference_displacement" >_diffrn_scan_axis.reference_displacement</a>',
'<a href="#_map.details" >_map.details</a>', '<a href="#_map.diffrn_id" >_map.diffrn_id</a>',
'<a href="#_map.entry_id" >_map.entry_id</a>', '<a name="#_map.id" >_map.id</a>',
'<a href="#_map_segment.array_id" >_map_segment.array_id</a>', '<a href="#_map_segment.binary_id" >_map_segment.binary_id</a>',
'<a href="#_map_segment.mask_array_id" >_map_segment.mask_array_id</a>', '<a href="#_map_segment.mask_binary_id" >_map_segment.mask_binary_id</a>',
'<a href="#_map_segment.id" >_map_segment.id</a>', '<a href="#_map_segment.map_id" >_map_segment.map_id</a>',
'<a href="#_map_segment.details" >_map_segment.details</a>.
+ Change type of
'<a href="#_array_structure.byte_order" >_array_structure.byte_order</a>' and
'<a href="#_array_structure.compression_type" >_array_structure.compression_type</a>'
to ucode to make these values case-insensitive
+ Add values 'packed_v2' and 'byte_offset' to enumeration of values for
'<a href="#_array_structure.compression_type" >_array_structure.compression_type</a>'
+ Add to defintions for the binary data type to handle new compression types, maps,
and a variety of new axis types.
2007-07-25 Cleanup of typos for formal release (HJB)
+ Corrected text fields for reference_ tag descriptions that
were off by one column
+ Fix typos in comments listing fract_ tags
+ Changed name of release from 1.5_DRAFT to 1.5
+ Fix unclosed text fields in various map definitions
;
1.4 2006-07-04
; This is a change to reintegrate all changes made in the course of
publication of ITVG, by the RCSB from April 2005 through
August 2008 and changes for the 2006 imgCIF workshop in
Hawaii.
2006-07-04 Consolidated changes for the 2006 imgCIF workshop (edited by HJB)
+ Correct type of '<a href="#_array_structure_list.direction">_array_structure_list.direction</a>' from 'int' to 'code'.
+ Added new data items suggested by CN
'<a href="#_diffrn_data_frame.details">_diffrn_data_frame.details</a>'
'<a href="#_array_intensities.pixel_fast_bin_size" >_array_intensities.pixel_fast_bin_size</a>',
'<a href="#_array_intensities.pixel_slow_bin_size" >_array_intensities.pixel_slow_bin_size</a> and
'<a href="#_array_intensities.pixel_binning_method" >_array_intensities.pixel_binning_method</a>
+ Added deprecated item for completeness
'<a href="#_diffrn_frame_data.details">_diffrn_frame_data.details</a>'
+ Added entry for missing item in contents list
'<a href="#_array_structure_list_axis.displacement" >_array_structure_list_axis.displacement</a>'
+ Added new MIME type <b>X</b>-BASE32K based on work by VL, KM, GD, HJB
+ Correct description of MIME boundary delimiter to start in
column 1.
+ General cleanup of text fields to conform to changes for ITVG
by removing empty lines at start and finish of text field.
+ Amend example for ARRAY_INTENSITIES to include binning.
+ Add local copy of type specification (as 'code') for all children
of '<a href="#_diffrn.id">_diffrn.id</a>'.
+ For consistency, change all references to 'pi' to '\p' and all
references to 'Angstroms' to '\%Angstroms'.
+ Clean up all powers to use IUCr convention of '^power^', as in
'10^3^' for '10**3'.
+ Update 'yyyy-mm-dd' type regex to allow truncation from the right
and improve comments to explain handling of related mmCIF
'yyyy-mm-dd:hh:mm' type, and use of 'Z' for GMT time zone.
2005-03-08 and
2004-08-08 fixed cases where _item_units.code used
instead of _item_type.code (JDW)
2004-04-15 fixed item ordering in
_diffrn_measurement_axis.measurement_id
added sub_category 'vector' (JDW)
;
1.3.2 2005-06-25
; 2005-06-25 ITEM_TYPE_LIST: code, ucode, line, uline regexps updated
to those of current mmCIF; float modified by allowing integers
terminated by a point as valid. The 'time' part of
yyyy-mm-dd types made optional in the regexp. (BM)
2005-06-17 Minor corrections as for proofs for IT G Chapter 4.6
(NJA)
2005-02-21 Minor corrections to spelling and punctuation
(NJA)
2005-01-08 Changes as per Nicola Ashcroft.
+ Updated example 1 for DIFFRN_MEASUREMENT to agree with mmCIF.
+ Spelled out "micrometres" for "um" and "millimetres" for "mm".
+ Removed phrase "which may be stored" from ARRAY_STRUCTURE
description.
+ Removed unused 'byte-offsets' compressions and updated
cites to ITVG for '_array_structure.compression_type'.
(HJB)
;
1.3.1 2003-08-13
;
Changes as per Frances C. Bernstein.
+ Identify initials.
+ Adopt British spelling for centre in text.
+ Set \p and \%Angstrom and powers.
+ Clean up commas and unclear wordings.
+ Clean up tenses in history.
Changes as per Gotzon Madariaga.
+ Fix the ARRAY_DATA example to align '_array_data.binary_id'
and <b>X</b>-Binary-ID.
+ Add a range to '<a href="#_array_intensities.gain_esd">_array_intensities.gain_esd</a>'.
+ In the example of DIFFRN_DETECTOR_ELEMENT,
'<a href="#_diffrn_detector_element.id">_diffrn_detector_element.id</a>' and
'<a href="#_diffrn_detector_element.detector_id">_diffrn_detector_element.detector_id</a>' interchanged.
+ Fix typos for direction, detector and axes.
+ Clarify description of polarisation.
+ Clarify axes in '<a href="#_diffrn_detector_element.center[1]">_diffrn_detector_element.center[1]</a>'
'<a href="#_diffrn_detector_element.center[2]">_diffrn_detector_element.center[2]</a>'.
+ Add local item types for items that are pointers.
(HJB)
;
1.3.0 2003-07-24
;
Changes as per Brian McMahon.
+ Consistently quote tags embedded in text.
+ Clean up introductory comments.
+ Adjust line lengths to fit in 80 character window.
+ Fix several descriptions in AXIS category which
referred to '_axis.type' instead of the current item.
+ Fix erroneous use of deprecated item
'_diffrn_detector_axis.id' in examples for
DIFFRN_SCAN_AXIS.
+ Add deprecated items '_diffrn_detector_axis.id'
and '_diffrn_measurement_axis.id'.
(HJB)
;
1.2.4 2003-07-14
;
Changes as per I. David Brown.
+ Enhance descriptions in DIFFRN_SCAN_AXIS to make them less
dependent on the descriptions in DIFFRN_SCAN_FRAME_AXIS.
+ Provide a copy of the deprecated DIFFRN_FRAME_DATA
category for completeness.
(HJB)
;
1.2.3 2003-07-03
;
Cleanup to conform to ITVG.
+ Correct sign error in ..._cubed units.
+ Correct '_diffrn_radiation.polarisn_norm' range.
(HJB)
;
1.2.2 2003-03-10
;
Correction of typos in various DIFFRN_SCAN_AXIS descriptions.
(HJB)
;
1.2.1 2003-02-22
;
Correction of ATOM_ for ARRAY_ typos in various descriptions.
(HJB)
;
1.2 2003-02-07
;
Corrections to encodings (remove extraneous hyphens) remove
extraneous underscore in '<a href="#_array_structure.encoding_type">_array_structure.encoding_type</a>'
enumeration. Correct typos in items units list. (HJB)
;
1.1.3 2001-04-19
;
Another typo corrections by Wilfred Li, and cleanup by HJB.
;
1.1.2 2001-03-06
;
Several typo corrections by Wilfred Li.
;
1.1.1 2001-02-16
;
Several typo corrections by JW.
;
1.1 2001-02-06
;
Draft resulting from discussions on header for use at NSLS. (HJB)
+ Change DIFFRN_FRAME_DATA to <a href="#DIFFRN_DATA_FRAME">DIFFRN_DATA_FRAME</a>.
+ Change '_diffrn_detector_axis.id' to '<a href="#_diffrn_detector_axis.detector_id">_diffrn_detector_axis.detector_id</a>'.
+ Add '<a href="#_diffrn_measurement_axis.measurement_device">_diffrn_measurement_axis.measurement_device</a>' and change
'_diffrn_measurement_axis.id' to
'<a href="#_diffrn_measurement_axis.measurement_id">_diffrn_measurement_axis.measurement_id</a>'.
+ Add '<a href="#_diffrn_radiation.div_x_source">_diffrn_radiation.div_x_source</a>', '<a href="#_diffrn_radiation.div_y_source">_diffrn_radiation.div_y_source</a>',
'<a href="#_diffrn_radiation.div_x_y_source">_diffrn_radiation.div_x_y_source</a>',
'<a href="#_diffrn_radiation.polarizn_source_norm">_diffrn_radiation.polarizn_source_norm</a>',
'<a href="#_diffrn_radiation.polarizn_source_ratio">_diffrn_radiation.polarizn_source_ratio</a>', '<a href="#_diffrn_scan.date_end">_diffrn_scan.date_end</a>',
'<a href="#_diffrn_scan.date_start">_diffrn_scan.date_start</a>', '<a href="#_diffrn_scan_axis.angle_rstrt_incr">_diffrn_scan_axis.angle_rstrt_incr</a>',
'<a href="#_diffrn_scan_axis.displacement_rstrt_incr">_diffrn_scan_axis.displacement_rstrt_incr</a>',
'<a href="#_diffrn_scan_frame_axis.angle_increment">_diffrn_scan_frame_axis.angle_increment</a>',
'<a href="#_diffrn_scan_frame_axis.angle_rstrt_incr">_diffrn_scan_frame_axis.angle_rstrt_incr</a>',
'<a href="#_diffrn_scan_frame_axis.displacement">_diffrn_scan_frame_axis.displacement</a>',
'<a href="#_diffrn_scan_frame_axis.displacement_increment">_diffrn_scan_frame_axis.displacement_increment</a>',and
'<a href="#_diffrn_scan_frame_axis.displacement_rstrt_incr">_diffrn_scan_frame_axis.displacement_rstrt_incr</a>'.
+ Add '<a href="#_diffrn_measurement.device">_diffrn_measurement.device</a>' to category key.
+ Update yyyy-mm-dd to allow optional time with fractional seconds
for time stamps.
+ Fix typos caught by RS.
+ Add <a href="#ARRAY_STRUCTURE_LIST_AXIS">ARRAY_STRUCTURE_LIST_AXIS</a> category, and use concept of axis sets to
allow for coupled axes, as in spiral scans.
+ Add examples for fairly complete headers thanks to R. Sweet and P.
Ellis.
;
1.0 2000-12-21
;
Release version - few typos and tidying up. (BM & HJB)
+ Move ITEM_TYPE_LIST, ITEM_UNITS_LIST and DICTIONARY_HISTORY to end
of dictionary.
+ Alphabetize dictionary.
;
0.7.1 2000-09-29
;
Cleanup fixes. (JW)
+ Correct spelling of diffrn_measurement_axis in '<a href="#_axis.id">_axis.id</a>'
+ Correct ordering of uses of '_item.mandatory_code' and
'_item_default.value'.
;
0.7.0 2000-09-09
;
Respond to comments by I. David Brown. (HJB)
+ Add further comments on '\n' and '\t'.
+ Update ITEM_UNITS_LIST by taking section from mmCIF dictionary
and adding metres. Change 'meter' to 'metre' throughout.
+ Add missing enumerations to '<a href="#_array_structure.compression_type">_array_structure.compression_type</a>'
and make 'none' the default.
+ Remove parent-child relationship between
'<a href="#_array_structure_list.index">_array_structure_list.index</a>' and '<a href="#_array_structure_list.precedence">_array_structure_list.precedence</a>'.
+ Improve alphabetization.
+ Fix '<a href="#_array_intensities.gain_esd">_array_intensities_gain.esd</a>' related function.
+ Improve comments in <a href="#AXIS">AXIS</a>.
+ Fix DIFFRN_FRAME_DATA example.
+ Remove erroneous <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> example.
+ Add '<a href="#_diffrn_measurement_axis.id">_diffrn_measurement_axis.id</a>' to the category key.
;
0.6.0 1999-01-14
;
Remove redundant information for ENC_NONE data. (HJB)
+ After the D5 remove binary section identifier, size and
compression type.
+ Add Control-L to header.
;
0.5.1 1999-01-03
;
Cleanup of typos and syntax errors. (HJB)
+ Cleanup example details for <a href="#DIFFRN_SCAN">DIFFRN_SCAN</a> category.
+ Add missing quote marks for '<a href="#_diffrn_scan.id" >_diffrn_scan.id</a>' definition.
;
0.5 1999-01-01
;
Modifications for axis definitions and reduction of binary header. (HJB)
+ Restore '<a href="#_diffrn_detector.diffrn_id" >_diffrn_detector.diffrn_id</a>' to <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> KEY.
+ Add <a href="#AXIS">AXIS</a> category.
+ Bring in complete <a href="#DIFFRN_DETECTOR">DIFFRN_DETECTOR</a> and <a href="#DIFFRN_MEASUREMENT">DIFFRN_MEASUREMENT</a> categories
from cif_mm.dic for clarity.
+ Change '<a href="#_array_structure.encoding_type">_array_structure.encoding_type</a>' from type code to uline and
added X-Binary-Element-Type to MIME header.
+ Add detector beam centre '<a href="#_diffrn_detector_element.center[1]">_diffrn_detector_element.center[1]</a>' and
'<a href="#_diffrn_detector_element.center[2]">_diffrn_detector_element.center[2]</a>'.
+ Correct item name of '<a href="#_diffrn_refln.frame_id">_diffrn_refln.frame_id</a>'.
+ Replace reference to '_array_intensities.undefined' by
'_array_intensities.undefined_value'.
+ Replace references to '_array_intensity.scaling' with
'_array_intensities.scaling'.
+ Add <a href="#DIFFRN_SCAN">DIFFRN_SCAN</a>... categories.
;
0.4 1998-08-11
;
Modifications to the 0.3 imgCIF draft. (HJB)
+ Reflow comment lines over 80 characters and corrected typos.
+ Update examples and descriptions of MIME encoded data.
+ Change name to cbfext98.dic.
;
0.3 1998-07-04
;
Modifications for imgCIF. (HJB)
+ Add binary type, which is a text field containing a variant on
MIME encoded data.
+ Change type of '<a href="#_array_data.data" >_array_data.data</a>' to binary and specify internal
structure of raw binary data.
+ Add '<a href="#_array_data.binary_id" >_array_data.binary_id</a>', and make
'<a href="#_diffrn_frame_data.binary_id" >_diffrn_frame_data.binary_id</a>' and '<a href="#_array_intensities.binary_id" >_array_intensities.binary_id</a>'
into pointers to this item.
;
0.2 1997-12-02
;
Modifications to the CBF draft. (JW)
+ Add category hierarchy for describing frame data developed from
discussions at the BNL imgCIF Workshop Oct 1997. The following
changes are made in implementing the workshop draft. Category
DIFFRN_ARRAY_DATA is renamed to DIFFRN_FRAME_DATA. Category
DIFFRN_FRAME_TYPE is renamed to <a href="#DIFFRN_DETECTOR_ELEMENT">DIFFRN_DETECTOR_ELEMENT</a>. The
parent item for '<a href="#_diffrn_frame_data.array_id" >_diffrn_frame_data.array_id</a>' is changed from
'_array_structure_list.array_id' to '_array_structure.id'. Item
'_diffrn_detector.array_id' is deleted.
+ Add data item '<a href="#_diffrn_frame_data.binary_id" >_diffrn_frame_data.binary_id</a>' to identify data
groups within a binary section. The formal identification of the
binary section is still fuzzy.
;
0.1 1997-01-24
;
First draft of this dictionary in DDL 2.1 compliant format by John
Westbrook (JW). This version is adapted from the Crystallographic
Binary File (CBF) Format Draft Proposal provided by Andy Hammersley
(AH).
Modifications to the CBF draft. (JW)
+ In this version the array description has been cast in the categories
<a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> and <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a>. These categories
have been generalized to describe array data of arbitrary dimension.
+ Array data in this description are contained in the category
<a href="#ARRAY_DATA">ARRAY_DATA</a>. This departs from the CBF notion of data existing
in some special comment. In this description, data are handled as an
ordinary data item encapsulated in a character data type. Although
data this manner deviates from CIF conventions, it does not violate
any DDL 2.1 rules. DDL 2.1 regular expressions can be used to define
the binary representation which will permit some level of data
validation. In this version, the placeholder type code "any" has
been used. This translates to a regular expression which will match
any pattern.
It should be noted that DDL 2.1 already supports array data objects
although these have not been used in the current mmCIF dictionary.
It may be possible to use the DDL 2.1 ITEM_STRUCTURE and
ITEM_STRUCTURE_LIST categories to provide the information that is
carried in by the <a href="#ARRAY_STRUCTURE">ARRAY_STRUCTURE</a> and <a href="#ARRAY_STRUCTURE_LIST">ARRAY_STRUCTURE_LIST</a>. By
moving the array structure to the DDL level it would be possible to
define an array type as well as a regular expression defining the
data format.
+ Multiple array sections can be properly handled within a single
datablock.
;
#-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof-eof
</PRE>
</BODY>
</HTML>
|