CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EXOSinglePho_cff.py
Go to the documentation of this file.
2 
3 singlePhotonMod = cms.EDFilter("HLTSummaryFilter",
4  summary = cms.InputTag("hltTriggerSummaryAOD","","HLT"), # trigger summary
5  member = cms.InputTag("hltL1NonIsoHLTNonIsoSinglePhotonEt15HcalIsolFilter","","HLT"), # filter or collection
6  cut = cms.string("pt>10"), # cut on trigger object
7  minN = cms.int32(1) # min. # of passing objects needed
8 )
9 
10 exoticaSinglePhoHighetSeq=cms.Sequence(singlePhotonMod)
11 
12 exoticaRecoSinglePhoFilter = cms.EDFilter("EtMinPhotonCountFilter",
13  src = cms.InputTag("photons"),
14  etMin = cms.double(5.),
15  minNumber = cms.uint32(1)
16 )
17 
18 exoticaRecoSinglePhoHighetSeq=cms.Sequence(exoticaRecoSinglePhoFilter)