Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:48

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 muondtdigianalyzer = DQMEDAnalyzer('MuonDTDigis',
0005     # Label to retrieve Digis from the event
0006     DigiLabel = cms.InputTag('simMuonDTDigis'),
0007     # Label to retrieve SimHits from the event
0008     SimHitLabel = cms.InputTag('g4SimHits', "MuonDTHits"),
0009     # Name of the root file which will contain the histos
0010     outputFile = cms.untracked.string(''),
0011     # Switch on/off the verbosity
0012     verbose = cms.untracked.bool(False)
0013 )
0014 
0015 from Configuration.Eras.Modifier_fastSim_cff import fastSim
0016 fastSim.toModify(muondtdigianalyzer, SimHitLabel = "MuonSimHits:MuonDTHits")