Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.PythiaUEZ2starSettings_cfi import *
0004 
0005 generator = cms.EDFilter("Pythia6GeneratorFilter",
0006     pythiaHepMCVerbosity = cms.untracked.bool(False),
0007     maxEventsToPrint = cms.untracked.int32(0),
0008     pythiaPylistVerbosity = cms.untracked.int32(1),
0009     filterEfficiency = cms.untracked.double(1.0),
0010     crossSection = cms.untracked.double(79150000000),
0011     comEnergy = cms.double(14000.0),
0012     PythiaParameters = cms.PSet(
0013         pythiaUESettingsBlock,
0014         processParameters = cms.vstring('MSEL=0         ! User defined processes', 
0015             'MSUB(11)=1     ! Min bias process', 
0016             'MSUB(12)=1     ! Min bias process', 
0017             'MSUB(13)=1     ! Min bias process', 
0018             'MSUB(28)=1     ! Min bias process', 
0019             'MSUB(53)=1     ! Min bias process', 
0020             'MSUB(68)=1     ! Min bias process', 
0021             'MSUB(92)=1     ! Min bias process, single diffractive', 
0022             'MSUB(93)=1     ! Min bias process, single diffractive', 
0023             'MSUB(94)=1     ! Min bias process, double diffractive', 
0024             'MSUB(95)=1     ! Min bias process'),
0025         # This is a vector of ParameterSet names to be read, in this order
0026         parameterSets = cms.vstring('pythiaUESettings', 
0027             'processParameters')
0028     )
0029 )
0030 
0031 configurationMetadata = cms.untracked.PSet(
0032     version = cms.untracked.string('$Revision: 1.2 $'),
0033     name = cms.untracked.string('$Source: /local/reps/CMSSW/CMSSW/Configuration/GenProduction/python/FourteenTeV/MinBias_TuneZ2star_14TeV_pythia6_cff.py,v $'),
0034     annotation = cms.untracked.string('PYTHIA6-MinBias TuneZ2star at 14TeV')
0035 )
0036 
0037 ProductionFilterSequence = cms.Sequence(generator)