-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsensor_info.py
More file actions
38 lines (35 loc) · 1.89 KB
/
sensor_info.py
File metadata and controls
38 lines (35 loc) · 1.89 KB
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
def get_sensor_info(sensor) :
if sensor == "140" : return "100x25", "FTH bias none"
if sensor == "136" : return "100x25", "FTH bias none"
if sensor == "129" : return "100x25", "FDB bias none"
if sensor == "131" : return "100x25", "FDB bias none"
if sensor == "139" : return "100x25", "FTH dot"
if sensor == "135" : return "100x25", "FTH dot"
if sensor == "138" : return "50x50" , "FTH bias none"
if sensor == "134" : return "50x50" , "FTH bias none"
if sensor == "125" : return "50x50" , "FDB bias none"
if sensor == "128" : return "50x50" , "FDB bias none"
if sensor == "137" : return "50x50" , "FTH straight"
if sensor == "133" : return "50x50" , "FTH straight"
if sensor == "144" : return "50x50" , "FTH straight"
if "144irrad" in sensor : return "50x50" , "FTH straight"
if sensor == "126" : return "50x50" , "FTH wiggle"
if sensor == "127" : return "50x50" , "FTH wiggle"
if sensor == "130" : return "50x50" , "FTH wiggle"
if sensor == "132" : return "50x50" , "FTH wiggle"
if sensor == "113" : return "100x25", "CNM 3D"
if sensor == "115" : return "100x25", "CNM 3D"
if sensor == "114" : return "50x50" , "CNM 3D"
if sensor == "116" : return "50x50" , "CNM 3D"
if sensor == "180" : return "100x25", "HPK bitten no PT"
if sensor == "181" : return "100x25", "HPK bitten no PT"
if sensor == "183" : return "50x50", "HPK default no PT"
if sensor == "184" : return "50x50", "HPK default no PT"
if sensor == "185" : return "100x25", "HPK bitten no PT"
if sensor == "186" : return "50x50", "HPK default no PT"
if sensor == "193" : return "100x25", "FBK 3D"
if sensor == "194" : return "50x50", "FBK 3D"
if sensor == "IT1" : return "50x50", "FBK slimedge 200"
if "IT5irrad" in sensor : return "50x50", "FBK slimedge 100"
if sensor == "502" : return "100x25", "FBK planar EXT02"
return None,None