CMS 3D CMS Logo

dtChamberEfficiencyHI_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.untracked.InputTag('standAloneMuons'),
10  theMaxChi2 = cms.double(1000.),
11  theNSigma = cms.double(3.),
12  theMinNrec = cms.double(5.),
13  dt4DSegments = cms.untracked.InputTag('dt4DSegments'),
14  theRPCRecHits = cms.untracked.InputTag('dummy'),
15  thegemRecHits = cms.InputTag('dummy'),
16  cscSegments = cms.untracked.InputTag('dummy'),
17  RPCLayers = cms.bool(False),
18  NavigationType = cms.string('Standard')
19 )
20