test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 dtEfficiencyMonitor = cms.EDAnalyzer("DTChamberEfficiency",
6  MuonServiceProxy,
7  debug = cms.untracked.bool(True),
8  TrackCollection = cms.InputTag("standAloneMuons"),
9  theMaxChi2 = cms.double(1000.),
10  theNSigma = cms.double(3.),
11  theMinNrec = cms.double(5.),
12  dt4DSegments = cms.InputTag("dt4DSegments"),
13  theRPCRecHits = cms.InputTag("dummy"),
14  thegemRecHits = cms.InputTag("dummy"),
15  cscSegments = cms.InputTag("dummy"),
16  RPCLayers = cms.bool(False),
17  NavigationType = cms.string("Standard")
18 )
19