CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PDWG_MonoPhoton_cff.py
Go to the documentation of this file.
2 
3 ### Monophoton CS
4 
5 photonCandsPt130HOverE05Barrel = cms.EDFilter("PhotonRefSelector",
6  src = cms.InputTag("photons"),
7  cut = cms.string("(pt > 130) && (hadTowOverEm < 0.05) && (isEB == 1)"),
8  )
9 
10 onePhotonPt130HOverE05 = cms.EDFilter("CandViewCountFilter",
11  src = cms.InputTag("photonCandsPt130HOverE05Barrel"),
12  minNumber = cms.uint32(1),
13  )
14 pfMETSelectorMono = cms.EDFilter(
15  "CandViewSelector",
16  src = cms.InputTag("pfMet"),
17  cut = cms.string( "pt()>120" )
18  )
19 
20 pfMETCounterMono = cms.EDFilter(
21  "CandViewCountFilter",
22  src = cms.InputTag("pfMETSelectorMono"),
23  minNumber = cms.uint32(1),
24  )
25 monophotonSkimSequence = cms.Sequence(
26  photonCandsPt130HOverE05Barrel *
27  onePhotonPt130HOverE05 *
28  pfMETSelectorMono *
29  pfMETCounterMono
30  )