CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/HLTriggerOffline/Egamma/python/EgammaValidation_Wenu_cff.py

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 
00025 
00026 cut = cms.EDFilter("EtaPtMinCandViewSelector",
00027     src = cms.InputTag("leptons"),
00028     etaMin = cms.double(-2.5),
00029     etaMax = cms.double(2.5),
00030     ptMin = cms.double(2.0)
00031 )
00032 
00033 sel = cms.EDFilter("CandViewCountFilter",
00034     src = cms.InputTag("cut"),
00035     minNumber = cms.uint32(1)
00036 )
00037 
00038 egammavalWenu = cms.Sequence(
00039     leptons *
00040     cut *
00041     sel* (
00042         doubleElectronDQM +
00043         doubleElectronRelaxedDQM +
00044         doublePhotonDQM +
00045         doublePhotonRelaxedDQM +
00046         highEtDQM +
00047         veryHighEtDQM +
00048         singleElectronDQM +
00049         singleElectronLargeWindowDQM +
00050         singleElectronRelaxedDQM +
00051         singleElectronRelaxedLargeWindowDQM +
00052         singlePhotonRelaxedDQM+singlePhotonDQM)
00053     )