00001 import FWCore.ParameterSet.Config as cms 00002 00003 muondtdigianalyzer = cms.EDAnalyzer("MuonDTDigis", 00004 # Label to retrieve Digis from the event 00005 DigiLabel = cms.untracked.string('simMuonDTDigis'), 00006 # Label to retrieve SimHits from the event 00007 SimHitLabel = cms.untracked.string('g4SimHits'), 00008 # Name of the root file which will contain the histos 00009 outputFile = cms.untracked.string(''), 00010 # Switch on/off the verbosity 00011 verbose = cms.untracked.bool(False) 00012 ) 00013 00014 00015