CMS 3D CMS Logo

ecalTrigSettings_cff.py
Go to the documentation of this file.
1 
2 import FWCore.ParameterSet.Config as cms
3 
4 ecalTrigCommon = cms.PSet(filterType = cms.untracked.string("EcalGenEvtSelector"),
5  etaMax = cms.double(3),
6  partons = cms.vint32(1,2,3,4,5,6,21,22),
7  partonStatus = cms.vint32(2,2,2,2,2,2,2,1),
8  particleStatus = cms.vint32(2, 2, 2, 2, 2,
9  2, 1, 1, 2, 2,
10  1, 1, 1),
11  particles = cms.vint32(221, -221, # eta
12  331, -331, # eta'
13  223, -223, # omega
14  211, -211, # pi
15  111, # pi0
16  311, # K0
17  11, -11, # e
18  22 # gamma
19  )
20 
21  )
22 
23 ecalTrigPt15 = cms.PSet(ecalTrigCommon,
24  partonPt = cms.vdouble(38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5),
25  particlePt = cms.vdouble(17.5, 17.5, # eta
26  16., 16., # eta'
27  18., 18., # omega
28  14.5, 14.5, # pi
29  17.5, # pi0
30  15, # K0
31  17.5, 17.5, # e
32  38.5 # gamma
33  )
34  )
35 
36 ecalTrigPt20 = ecalTrigPt15.clone()
37 
38 ecalTrigPt30 = ecalTrigPt15.clone()
39 
40 ecalTrigPt40 = ecalTrigPt15.clone()
41 
42 ecalTrigPt50 = ecalTrigPt15.clone()
43 
44 ecalTrigPt70 = ecalTrigPt15.clone()
45 
46 ecalTrigPt80 = ecalTrigPt15.clone()
47 
48 ecalTrigPt100 = ecalTrigPt15.clone(
49  particlePt = cms.vdouble(36.125, 36.125, # eta
50  35.25, 35.25, # eta'
51  34.75, 34.75, # omega
52  32.25, 32.25, # pi
53  32.25, # pi0
54  31.5, # K0
55  38.75, 38.75, # e
56  71.625 # gamma
57  )
58  )
59 
60 
61 
62 
63 
64 
65 
66 
67 
68