Go to the documentation of this file.00001
00002 from HLTriggerOffline.Egamma.veryHighEtDQM_cfi import *
00003 from HLTriggerOffline.Egamma.singlePhotonRelaxedDQM_cfi import *
00004 from HLTriggerOffline.Egamma.singlePhotonDQM_cfi import *
00005 from HLTriggerOffline.Egamma.singleElectronRelaxedDQM_cfi import *
00006 from HLTriggerOffline.Egamma.singleElectronDQM_cfi import *
00007 from HLTriggerOffline.Egamma.singleElectronRelaxedLargeWindowDQM_cfi import *
00008 from HLTriggerOffline.Egamma.singleElectronLargeWindowDQM_cfi import *
00009 from HLTriggerOffline.Egamma.highEtDQM_cfi import *
00010 from HLTriggerOffline.Egamma.doublePhotonRelaxedDQM_cfi import *
00011 from HLTriggerOffline.Egamma.doublePhotonDQM_cfi import *
00012 from HLTriggerOffline.Egamma.doubleElectronRelaxedDQM_cfi import *
00013 from HLTriggerOffline.Egamma.doubleElectronDQM_cfi import *
00014
00015 highEtDQM.pdgGen = 11
00016 veryHighEtDQM.pdgGen = 11
00017
00018 leptons = cms.EDFilter("PdgIdAndStatusCandViewSelector",
00019 status = cms.vint32(1),
00020 src = cms.InputTag("genParticles"),
00021 pdgId = cms.vint32(11)
00022 )
00023
00024 cut = cms.EDFilter("EtaPtMinCandViewSelector",
00025 src = cms.InputTag("leptons"),
00026 etaMin = cms.double(-2.5),
00027 etaMax = cms.double(2.5),
00028 ptMin = cms.double(2.0)
00029 )
00030
00031 sel = cms.EDFilter("CandViewCountFilter",
00032 src = cms.InputTag("cut"),
00033 minNumber = cms.uint32(2)
00034 )
00035
00036 egammavalZee = cms.Sequence(
00037 leptons*cut*sel*(doubleElectronDQM+doubleElectronRelaxedDQM+doublePhotonDQM+doublePhotonRelaxedDQM+highEtDQM+veryHighEtDQM+singleElectronDQM+singleElectronLargeWindowDQM+singleElectronRelaxedDQM+singleElectronRelaxedLargeWindowDQM+singlePhotonRelaxedDQM+singlePhotonDQM)
00038 )