CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EgammaValidation_Zee_cff.py
Go to the documentation of this file.
1 
14 
15 highEtDQM.pdgGen = 11
16 veryHighEtDQM.pdgGen = 11
17 
18 leptons = cms.EDFilter("PdgIdAndStatusCandViewSelector",
19  status = cms.vint32(1),
20  src = cms.InputTag("genParticles"),
21  pdgId = cms.vint32(11)
22 )
23 
24 cut = cms.EDFilter("EtaPtMinCandViewSelector",
25  src = cms.InputTag("leptons"),
26  etaMin = cms.double(-2.5),
27  etaMax = cms.double(2.5),
28  ptMin = cms.double(2.0)
29 )
30 
31 sel = cms.EDFilter("CandViewCountFilter",
32  src = cms.InputTag("cut"),
33  minNumber = cms.uint32(2)
34 )
35 
36 egammavalZee = cms.Sequence(
37 leptons*cut*sel*(doubleElectronDQM+doubleElectronRelaxedDQM+doublePhotonDQM+doublePhotonRelaxedDQM+highEtDQM+veryHighEtDQM+singleElectronDQM+singleElectronLargeWindowDQM+singleElectronRelaxedDQM+singleElectronRelaxedLargeWindowDQM+singlePhotonRelaxedDQM+singlePhotonDQM)
38 )