Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 hcalSimHitStudy = DQMEDAnalyzer('HcalSimHitStudy',
0005     ModuleLabel = cms.untracked.string('g4SimHits'),
0006     outputFile = cms.untracked.string(''),
0007     Verbose = cms.untracked.bool(False),
0008     HitCollection = cms.untracked.string('HcalHits'),
0009     TestNumber    = cms.bool(False),
0010     hep17         = cms.bool(False)
0011 )
0012 
0013 
0014 from Configuration.Eras.Modifier_fastSim_cff import fastSim
0015 fastSim.toModify( hcalSimHitStudy, ModuleLabel = cms.untracked.string('fastSimProducer') )
0016     
0017 from Configuration.Eras.Modifier_run2_HCAL_2017_cff import run2_HCAL_2017
0018 (run2_HCAL_2017 & ~fastSim).toModify( hcalSimHitStudy, TestNumber = cms.bool(True) )
0019 
0020 from Configuration.Eras.Modifier_run2_HEPlan1_2017_cff import run2_HEPlan1_2017
0021 run2_HEPlan1_2017.toModify( hcalSimHitStudy, hep17 = cms.bool(True) )
0022 
0023