CMS 3D CMS Logo

METplusTrackMonitor_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMOffline.Trigger.METplusTrackMonitor_cfi import hltMETplusTrackMonitoring
4 
5 # HLT_MET105_IsoTrk50
6 MET105_IsoTrk50monitoring = hltMETplusTrackMonitoring.clone()
7 MET105_IsoTrk50monitoring.FolderName = cms.string('HLT/MET/MET105_IsoTrk50/')
8 MET105_IsoTrk50monitoring.numGenericTriggerEventPSet.hltPaths = cms.vstring("HLT_MET105_IsoTrk50_v*")
9 MET105_IsoTrk50monitoring.hltMetFilter = cms.InputTag('hltMET105', '', 'HLT')
10 MET105_IsoTrk50monitoring.hltMetCleanFilter = cms.InputTag('hltMETClean65', '', 'HLT')
11 
12 # HLT_MET120_IsoTrk50
13 MET120_IsoTrk50monitoring = hltMETplusTrackMonitoring.clone()
14 MET120_IsoTrk50monitoring.FolderName = cms.string('HLT/MET/MET120_IsoTrk50/')
15 MET120_IsoTrk50monitoring.numGenericTriggerEventPSet.hltPaths = cms.vstring("HLT_MET120_IsoTrk50_v*")
16 MET120_IsoTrk50monitoring.hltMetFilter = cms.InputTag('hltMET120', '', 'HLT')
17 MET120_IsoTrk50monitoring.hltMetCleanFilter = cms.InputTag('hltMETClean65', '', 'HLT')
18 
19 exoHLTMETplusTrackMonitoring = cms.Sequence(
20  MET105_IsoTrk50monitoring
21  + MET120_IsoTrk50monitoring
22 )
23