Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:14

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def customiseRR(process):
0004 
0005     # Russian roulette disabled - by default it is enabled
0006   if hasattr(process,'g4SimHits'):
0007     process.g4SimHits.StackingAction.RusRoGammaEnergyLimit = cms.double(0.0)
0008     process.g4SimHits.StackingAction.RusRoNeutronEnergyLimit = cms.double(0.0)
0009 
0010     return(process)