Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:44

0001 
0002 import FWCore.ParameterSet.Config as cms
0003 
0004 ecalTrigCommon = cms.PSet(filterType = cms.untracked.string("EcalGenEvtSelector"),
0005                           etaMax = cms.double(3),
0006                           partons = cms.vint32(1,2,3,4,5,6,21,22),
0007                           partonStatus = cms.vint32(2,2,2,2,2,2,2,1),
0008                           particleStatus = cms.vint32(2, 2, 2, 2, 2,
0009                                                       2, 1, 1, 2, 2,
0010                                                       1, 1, 1),
0011                           particles = cms.vint32(221, -221, # eta
0012                                                  331, -331, # eta'
0013                                                  223, -223, # omega
0014                                                  211, -211, # pi
0015                                                  111,       # pi0
0016                                                  311,       # K0
0017                                                  11, -11,   # e
0018                                                  22         # gamma
0019                                                  )
0020                           
0021                           )
0022 
0023 ecalTrigPt15 = cms.PSet(ecalTrigCommon,
0024                         partonPt = cms.vdouble(38.5,38.5,38.5,38.5,38.5,38.5,38.5,38.5),
0025                         particlePt = cms.vdouble(17.5, 17.5, # eta
0026                                                  16., 16.,   # eta'
0027                                                  18., 18.,   # omega
0028                                                  14.5, 14.5, # pi
0029                                                  17.5,       # pi0
0030                                                  15,         # K0
0031                                                  17.5, 17.5, # e
0032                                                  38.5        # gamma
0033                                                  )
0034                         )
0035 
0036 ecalTrigPt20 = ecalTrigPt15.clone()
0037 
0038 ecalTrigPt30 = ecalTrigPt15.clone()
0039 
0040 ecalTrigPt40 = ecalTrigPt15.clone()
0041 
0042 ecalTrigPt50 = ecalTrigPt15.clone()
0043 
0044 ecalTrigPt70 = ecalTrigPt15.clone()
0045 
0046 ecalTrigPt80 = ecalTrigPt15.clone()
0047 
0048 ecalTrigPt100 = ecalTrigPt15.clone(
0049     particlePt = cms.vdouble(36.125, 36.125, # eta
0050                              35.25, 35.25,   # eta'
0051                              34.75, 34.75,   # omega
0052                              32.25, 32.25,   # pi
0053                              32.25,          # pi0
0054                              31.5,           # K0
0055                              38.75, 38.75,   # e
0056                              71.625          # gamma
0057                              )   
0058     )
0059 
0060 
0061 
0062 
0063 
0064 
0065 
0066 
0067 
0068