Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from GeneratorInterface.CepGenInterface.cepgenDefaultParameters_cff import *
0004 
0005 generator = cms.EDFilter("CepGenGeneratorFilter",
0006     process = cms.PSet(
0007         name = cms.string('pptoff'),
0008         kinematics = cms.PSet(
0009             mode = cms.uint32(2),  # 1 = elastic, 2-3 = SD, 4 = DD
0010             structureFunctions = cms.PSet(
0011                 name = cms.int32(301)  # see https://cepgen.hepforge.org/raw-modules
0012             ),
0013             cmEnergy = cms.double(13000.0),
0014             qt = cms.vdouble(0., 50.),
0015             rapidity = cms.vdouble(-6., 6.),
0016             eta = cms.vdouble(-2.5, 2.5),
0017             pt = cms.vdouble(25., 9999.),
0018             ptdiff = cms.vdouble(0., 500.)
0019         ),
0020         processParameters = cms.PSet(
0021             ktFactorised = cms.bool(True),
0022             pair = cms.uint32(13)
0023         )
0024     ),
0025     outputModules = cepgenOutputModules,
0026     maxEventsToPrint = cms.untracked.int32(0),
0027     verbosity = cms.untracked.int32(0)
0028 )