-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig_base.py
79 lines (69 loc) · 1.82 KB
/
config_base.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import FWCore.ParameterSet.Config as cms
config = cms.PSet(
fill = cms.uint32(0),
xangle = cms.uint32(0),
dataset = cms.string(""),
alignment_corrections = cms.PSet(
rp_L_2_F = cms.PSet(
de_x = cms.double(0.)
),
rp_L_1_F = cms.PSet(
de_x = cms.double(0.)
),
rp_R_1_F = cms.PSet(
de_x = cms.double(0.)
),
rp_R_2_F = cms.PSet(
de_x = cms.double(0.)
)
),
aligned = cms.bool(False),
n_si = cms.double(4.),
sector_45 = cms.PSet(
cut_h_apply = cms.bool(True),
cut_h_a = cms.double(-1),
cut_h_c = cms.double(-38.55),
cut_h_si = cms.double(0.2),
cut_v_apply = cms.bool(True),
cut_v_a = cms.double(-1.07),
cut_v_c = cms.double(1.63),
cut_v_si = cms.double(0.15)
),
sector_56 = cms.PSet(
cut_h_apply = cms.bool(True),
cut_h_a = cms.double(-1),
cut_h_c = cms.double(-39.26),
cut_h_si = cms.double(0.2),
cut_v_apply = cms.bool(True),
cut_v_a = cms.double(-1.07),
cut_v_c = cms.double(1.49),
cut_v_si = cms.double(0.15)
),
matching_1d = cms.PSet(
reference_datasets = cms.vstring("default"),
rp_L_2_F = cms.PSet(
x_min = cms.double(46.5),
x_max = cms.double(57.),
sh_min = cms.double(-43),
sh_max = cms.double(-41)
),
rp_L_1_F = cms.PSet(
x_min = cms.double(8.),
x_max = cms.double(18.),
sh_min = cms.double(-4.2),
sh_max = cms.double(-2.4)
),
rp_R_1_F = cms.PSet(
x_min = cms.double(7.5),
x_max = cms.double(18.),
sh_min = cms.double(-3.6),
sh_max = cms.double(-1.8)
),
rp_R_2_F = cms.PSet(
x_min = cms.double(47.),
x_max = cms.double(57.),
sh_min = cms.double(-43.2),
sh_max = cms.double(-41.2)
)
)
)