CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EgammaValidation_Wenu_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 
25 
26 cut = cms.EDFilter("EtaPtMinCandViewSelector",
27  src = cms.InputTag("leptons"),
28  etaMin = cms.double(-2.5),
29  etaMax = cms.double(2.5),
30  ptMin = cms.double(2.0)
31 )
32 
33 sel = cms.EDFilter("CandViewCountFilter",
34  src = cms.InputTag("cut"),
35  minNumber = cms.uint32(1)
36 )
37 
38 egammavalWenu = cms.Sequence(
39  leptons *
40  cut *
41  sel* (
42  doubleElectronDQM +
43  doubleElectronRelaxedDQM +
44  doublePhotonDQM +
45  doublePhotonRelaxedDQM +
46  highEtDQM +
47  veryHighEtDQM +
48  singleElectronDQM +
49  singleElectronLargeWindowDQM +
50  singleElectronRelaxedDQM +
51  singleElectronRelaxedLargeWindowDQM +
52  singlePhotonRelaxedDQM+singlePhotonDQM)
53  )