Back to home page

Project CMSSW displayed by LXR

 
 

    


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     # Paths to files with particle and physics processes definition
0007     particlesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/particles_gluino_300_GeV.txt'),
0008     resonanceEnergy = cms.double(200.0), ##
0009 
0010     #        FileInPath particlesDef = "SimG4Core/CustomPhysics/data/isa-slha.out"
0011     processesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/RhadronProcessList.txt'),
0012     amplitude = cms.double(100.0), ##
0013 
0014     # R-hadron physics setup
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     # dark photon
0023     dark_factor = cms.double(1.0)
0024 )