CMS 3D CMS Logo

dtChamberEfficiency_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoMuon.TrackingTools.MuonServiceProxy_cff import MuonServiceProxy
4 
5 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
6 dtEfficiencyMonitor = DQMEDAnalyzer('DTChamberEfficiency',
7  MuonServiceProxy,
8  debug = cms.untracked.bool(True),
9  TrackCollection = cms.InputTag("standAloneMuons"),
10  theMaxChi2 = cms.double(1000.),
11  theNSigma = cms.double(3.),
12  theMinNrec = cms.double(3.),
13  dt4DSegments = cms.InputTag('dt4DSegments'),
14  theRPCRecHits = cms.InputTag('dummy'),
15  cscSegments = cms.InputTag('dummy'),
16  RPCLayers = cms.bool(False),
17  NavigationType = cms.string('Standard')
18 )
19