Passed
Push — master ( c026c2...632976 )
by Daniel
06:58
created

amd.data   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 60
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 44
dl 0
loc 60
rs 10
c 0
b 0
f 0
1
"""Stores the tag strings used in CIFs.
2
"""
3
4
CIF_TAGS = {
5
6
    'cellpar': [
7
        '_cell_length_a', 
0 ignored issues
show
Coding Style introduced by
Trailing whitespace
Loading history...
8
        '_cell_length_b', 
0 ignored issues
show
Coding Style introduced by
Trailing whitespace
Loading history...
9
        '_cell_length_c',
10
        '_cell_angle_alpha', 
0 ignored issues
show
Coding Style introduced by
Trailing whitespace
Loading history...
11
        '_cell_angle_beta', 
0 ignored issues
show
Coding Style introduced by
Trailing whitespace
Loading history...
12
        '_cell_angle_gamma',
13
    ],
14
15
    'atom_site_fract': [
16
        '_atom_site_fract_x',
17
        '_atom_site_fract_y',
18
        '_atom_site_fract_z',
19
    ],
20
21
    'atom_site_cartn': [
22
        '_atom_site_cartn_x',
23
        '_atom_site_cartn_y',
24
        '_atom_site_cartn_z',
25
    ],
26
27
    'symop': [
28
        '_symmetry_equiv_pos_as_xyz',
29
        '_space_group_symop_operation_xyz',
30
        '_space_group_symop.operation_xyz',
31
        '_symmetry_equiv_pos_as_xyz_',
32
        '_space_group_symop_operation_xyz_',
33
    ],
34
35
    'atom_symbol': [
36
        '_atom_site_type_symbol',
37
        '_atom_site_label',
38
    ],
39
40
    'spacegroup_name' : [
41
        '_symmetry_space_group_name_H-M',
42
        '_symmetry_space_group_name_H_M',
43
        '_symmetry_space_group_name_H-M_',
44
        '_symmetry_space_group_name_H_M_',
45
        '_space_group_name_Hall',
46
        '_space_group_name_Hall_',
47
        '_space_group_name_H-M_alt',
48
        '_space_group_name_H-M_alt_',
49
        '_symmetry_space_group_name_hall',
50
        '_symmetry_space_group_name_hall_',
51
        '_symmetry_space_group_name_h-m',
52
        '_symmetry_space_group_name_h-m_',
53
    ],
54
55
    'spacegroup_number': [
56
        '_space_group_IT_number',
57
        '_symmetry_Int_Tables_number',
58
        '_space_group_IT_number_',
59
        '_symmetry_Int_Tables_number_',
60
    ],
61
62
}
63