-
Notifications
You must be signed in to change notification settings - Fork 7
/
strategy.py
56 lines (56 loc) · 1.97 KB
/
strategy.py
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
'''strategy setting file, note: this is an important file. You should be careful when modifying the file.
Please keep the format.
The words is case sensitive.
You can modify parameters group order in 'param_order' and parameters group in 'param_group'.
'''
strategy={
"xray":{
# task type
"type":"xray",
# param group format: 'group_name':[ group_member1,group_member2,...]
"param_group":{
'scale': ["Scale"],
'zero': ["Transparency","Zero"],
'simple background': ["BACK[0]","BACK[1]"],
'cell a,b,c': ["a-Pha","b-P","c-P"],
'W': ["W-Pr"],
'complex background': ["BACK"],
"V,U": ["V-Pr", "U-Pr"],
"Asym": ["PA"],
'Y,X': ["Y-Pr","X-Pr"],
'Atom x y z': ["X-Atom","Y-Atom","Z-Atom"],
'Pref,Bov': ["Pref","Bov"],
'Biso-Atom': ["Biso-Atom"],
'GausS,1G': ["GausS","1G"],
'Occ-Atom': ["Occ-Atom"],
'Tempeture factors': ["B1","B2","B3"],
'S_L,D_L': ["PA", "S_L","D_L",
#"Sysin","Displacement",
#"LorSiz","SZ",
#"Sycos","Transparency",
#"Str",
],
"manual background": ["BCK"]
},
# param order format: [group_name1,group_name2,...]
'param_order': [
"scale",
"zero",
"simple background" ,
"cell a,b,c",
"W",
"complex background" ,
"V,U",
"Asym",
"Y,X",
"Atom x y z",
"Pref,Bov",
"Biso-Atom",
"GausS,1G",
"Occ-Atom",
"Tempeture factors",
"S_L,D_L",
"manual background"
]
}
}