Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customise_fastSimPostLS1(process):
0004 
0005     if hasattr(process,'fastSimProducer'):
0006        process=customise_fastSimProducer(process)
0007        
0008     return process
0009 
0010 
0011 def customise_fastSimProducer(process): 
0012 
0013     # enable 2015 HF shower library
0014     process.fastSimProducer.Calorimetry.HFShowerLibrary.FileName = cms.FileInPath('SimG4CMS/Calo/data/HFShowerLibrary_npmt_noatt_eta4_16en_v4.root')
0015     
0016     return process
0017 
0018