00001 import FWCore.ParameterSet.Config as cms 00002 00003 from RecoMuon.TrackingTools.MuonServiceProxy_cff import * 00004 from RecoMuon.TrackingTools.MuonTrackLoader_cff import * 00005 00006 dtEfficiencyMonitor = cms.EDAnalyzer("DTChamberEfficiency", 00007 muonServiceProxy, 00008 debug = cms.untracked.bool(True), 00009 TrackCollection = cms.InputTag("cosmicMuons1Leg"), 00010 theMaxChi2 = cms.double(50.), 00011 theNSigma = cms.double(2.), 00012 theMinNrec = cms.double(1.), 00013 dt4DSegments = cms.InputTag("dt4DSegments"), 00014 theRPCRecHits = cms.InputTag("dummy"), 00015 cscSegments = cms.InputTag("dummy"), 00016 RPCLayers = cms.bool(False), 00017 NavigationType = cms.string("Direct") 00018 ) 00019 00020