File indexing completed on 2024-04-06 12:30:19
0001 import FWCore.ParameterSet.Config as cms
0002
0003 customPhysicsSetup = cms.PSet(
0004 reggeSuppression = cms.double(0.0),
0005
0006
0007 particlesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/particles_gluino_300_GeV.txt'),
0008 resonanceEnergy = cms.double(200.0),
0009
0010
0011 processesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/RhadronProcessList.txt'),
0012 amplitude = cms.double(100.0),
0013
0014
0015 rhadronPhysics = cms.bool(True),
0016 resonant = cms.bool(False),
0017 gamma = cms.double(0.1),
0018 reggeModel = cms.bool(False),
0019 hadronLifeTime = cms.double(-1.),
0020 mixing = cms.double(1.),
0021
0022
0023 dark_factor = cms.double(1.0)
0024 )