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 
12  source = cms.uint32(0),
13 
14 
15  cathodeShower = cms.PSet(
16 
20  showerThresholds = cms.vuint32(
21  # ME1/1
22  100, 100, 100,
23  # ME1/2
24  54, 55, 61,
25  # ME1/3
26  20, 20, 30,
27  # ME2/1
28  35, 35, 35,
29  # ME2/2
30  29, 29, 35,
31  # ME3/1
32  35, 35, 40,
33  # ME3/2
34  24, 25, 30,
35  # ME4/1
36  36, 40, 40,
37  # ME4/2
38  26, 30, 30
39  ),
40  showerMinInTBin = cms.uint32(6),
41  showerMaxInTBin = cms.uint32(8),
42  showerMinOutTBin = cms.uint32(2),
43  showerMaxOutTBin = cms.uint32(5),
44  ),
45 
46  anodeShower = cms.PSet(
47 
48  showerThresholds = cms.vuint32(
49  # ME1/1
50  104, 105, 107,
51  # ME1/2
52  92, 100, 102,
53  # ME1/3
54  32, 33, 48,
55  # ME2/1
56  133, 134, 136,
57  # ME2/2
58  83, 84, 86,
59  # ME3/1
60  130, 131, 133,
61  # ME3/2
62  74, 80, 87,
63  # ME4/1
64  127, 128, 130,
65  # ME4/2
66  88, 89, 94
67  ),
68  showerMinInTBin = cms.uint32(8),
69  showerMaxInTBin = cms.uint32(10),
70  showerMinOutTBin = cms.uint32(4),
71  showerMaxOutTBin = cms.uint32(7),
72  )
73 )