CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/SimG4Core/CustomPhysics/python/CustomPhysics_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 customPhysicsSetup = cms.PSet(
00004     reggeSuppression = cms.double(0.0), ##
00005 
00006     # Paths to files with particle and physics processes definition
00007     particlesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/particles_gluino_300_GeV.txt'),
00008     resonanceEnergy = cms.double(200.0), ##
00009 
00010     #        FileInPath particlesDef = "SimG4Core/CustomPhysics/data/isa-slha.out"
00011     processesDef = cms.FileInPath('SimG4Core/CustomPhysics/data/RhadronProcessList.txt'),
00012     amplitude = cms.double(100.0), ##
00013 
00014     # R-hadron physics setup
00015     resonant = cms.bool(False),
00016     gamma = cms.double(0.1),
00017     reggeModel = cms.bool(False),
00018     hadronLifeTime = cms.double(-1.),
00019     mixing = cms.double(1.)
00020 
00021 )
00022