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 customise(process):
0004 
0005   # fragment allowing to simulate neutron background in muon system
0006   # using default neutron tracking 
0007 
0008   from SimG4Core.Application.NeutronBGforMuons_cff import neutronBG
0009 
0010   process = neutronBG(process)
0011 
0012   return(process)
0013