Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-01-30 06:07:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Customization for running on MC
0004 #   - Call from cmsDriver.py with: `--customise DPGAnalysis/HcalNanoAOD/customiseHcalMC_cff.customiseHcalMC`
0005 def customiseHcalMC(process):
0006   # Point to appropriate MC digi collections
0007   process.hcalDigiSortedTable.tagQIE11 = cms.untracked.InputTag("simHcalUnsuppressedDigis", "HBHEQIE11DigiCollection")
0008   process.hcalDigiSortedTable.tagQIE10 = cms.untracked.InputTag("simHcalUnsuppressedDigis","HFQIE10DigiCollection")
0009   process.hcalDigiSortedTable.tagHO = cms.untracked.InputTag("simHcalUnsuppressedDigis")
0010 
0011   # Use the appropriate number of samples for digis in MC
0012   process.hcalDigiSortedTable.nTS_HB = cms.untracked.uint32(10)
0013   process.hcalDigiSortedTable.nTS_HE = cms.untracked.uint32(10)
0014 
0015   return process