CMS 3D CMS Logo

CustomPhysics_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 customPhysicsSetup = cms.PSet(
4  reggeSuppression = cms.double(0.0),
5 
6  # Paths to files with particle and physics processes definition
7  particlesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/particles_gluino_300_GeV.txt'),
8  resonanceEnergy = cms.double(200.0),
9 
10  # FileInPath particlesDef = "SimG4Core/CustomPhysics/data/isa-slha.out"
11  processesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/RhadronProcessList.txt'),
12  amplitude = cms.double(100.0),
13 
14  # R-hadron physics setup
15  rhadronPhysics = cms.bool(True),
16  resonant = cms.bool(False),
17  gamma = cms.double(0.1),
18  reggeModel = cms.bool(False),
19  hadronLifeTime = cms.double(-1.),
20  mixing = cms.double(1.),
21 
22  # dark photon
23  dark_factor = cms.double(1.0)
24 )