Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:36

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 generator = cms.EDFilter("ReggeGribovPartonMCGeneratorFilter",
0004 
0005                           bmin = cms.double(0), #impact parameter min in fm
0006                           bmax = cms.double(10000),#impact parameter max in fm
0007                           paramFileName = cms.untracked.string("Configuration/Generator/data/ReggeGribovPartonMC.param"), #file with more parameters specific to crmc interface
0008                           skipNuclFrag = cms.bool(True), #in HI collisions nuclear fragments with pt=0 can be in the hep event. to skip those activate this option
0009                           beammomentum = cms.double(4080),
0010                           targetmomentum = cms.double(-4080),
0011                           beamid = cms.int32(208),
0012                           targetid = cms.int32(1),
0013                           model = cms.int32(0),
0014                           )