CMS 3D CMS Logo

showerParams.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #Parameterset for the hadronic shower trigger for Run-3
4 showerPSet = cms.PSet(
5 
16  source = cms.vuint32(
17  # ME1/1
18  3,
19  # ME1/2
20  1,
21  # ME1/3
22  1,
23  # ME2/1
24  3,
25  # ME2/2
26  1,
27  # ME3/1
28  3,
29  # ME3/2
30  1,
31  # ME4/1
32  3,
33  # ME4/2
34  1
35  ),
36 
37 
38  cathodeShower = cms.PSet(
39 
44  showerThresholds = cms.vuint32(
45  # ME1/1
46  100, 100, 100,
47  # ME1/2
48  10000, 10000, 10000,
49  # ME1/3
50  10000, 10000, 10000,
51  # ME2/1
52  14, 33, 35,
53  # ME2/2
54  10000, 10000, 10000,
55  # ME3/1
56  12, 31, 33,
57  # ME3/2
58  10000, 10000, 10000,
59  # ME4/1
60  14, 34, 36,
61  # ME4/2
62  10000, 10000, 10000
63  ),
64  showerNumTBins = cms.uint32(3),# 3BX for cathode HMT
65  minLayersCentralTBin = cms.uint32(5),
66 
68  peakCheck = cms.bool(False),
69  ),
70 
71  anodeShower = cms.PSet(
72 
73  showerThresholds = cms.vuint32(
74  # ME1/1
75  140, 140, 140,
76  # ME1/2
77  140, 140, 140,
78  # ME1/3
79  7, 14, 18,
80  # ME2/1
81  23, 56, 58,
82  # ME2/2
83  12, 28, 32,
84  # ME3/1
85  21, 55, 57,
86  # ME3/2
87  12, 26, 34,
88  # ME4/1
89  25, 62, 64,
90  # ME4/2
91  12, 27, 31
92  ),
93  showerNumTBins = cms.uint32(1),# 1BX for anode HMT
94  minLayersCentralTBin = cms.uint32(5),
95  )
96 )