CMS 3D CMS Logo

muonIdDQM_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 muonIdDQM = DQMEDAnalyzer('MuonIdDQM',
5  inputMuonCollection = cms.InputTag("muons"),
6  inputDTRecSegment4DCollection = cms.InputTag("dt4DSegments"),
7  inputCSCSegmentCollection = cms.InputTag("cscSegments"),
8  useTrackerMuons = cms.untracked.bool(True),
9  useGlobalMuons = cms.untracked.bool(True),
10  useTrackerMuonsNotGlobalMuons = cms.untracked.bool(True),
11  useGlobalMuonsNotTrackerMuons = cms.untracked.bool(False),
12  baseFolder = cms.untracked.string("Muons/MuonIdDQM")
13 )