CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Pythia8_PhotonJetpt15_20_10TeV_8TeV_cff.py
Go to the documentation of this file.
2 
3 ##from Configuration.Generator.PythiaUEZ2starSettings_cfi import *
4 
5 generator = cms.EDFilter("Pythia8GeneratorFilter",
6  pythiaHepMCVerbosity = cms.untracked.bool(False),
7  maxEventsToPrint = cms.untracked.int32(0),
8  pythiaPylistVerbosity = cms.untracked.int32(0),
9  filterEfficiency = cms.untracked.double(1.0),
10  crossSection = cms.untracked.double(-1.),
11  crossSectionNLO = cms.untracked.double(-1.),
12  # doPDGConvert = cms.bool(False), # not sure if the option is valid in Py8
13  comEnergy = cms.double(8000.0),
14  PythiaParameters = cms.PSet(
15  processParameters = cms.vstring('Main:timesAllowErrors = 10000',
16  'ParticleDecays:limitTau0 = on', # Decay those unstable particles
17  'ParticleDecays:tau0Max = 10.', # for which _nominal_ proper lifetime < 10 mm
18  'PromptPhoton:all = on',
19  'PhaseSpace:pTHatMin = 15.',
20  'PhaseSpace:pTHatMax = 20.'),
21  # This is a vector of ParameterSet names to be read, in this order
22  parameterSets = cms.vstring('processParameters')
23  )
24 )
25 
26 photonfilter = cms.EDFilter("MCSingleParticleFilter",
27  MaxEta = cms.untracked.vdouble(2.4),
28  MinEta = cms.untracked.vdouble(-2.4),
29  MinPt = cms.untracked.vdouble(15.0),
30  ParticleID = cms.untracked.vint32(22)
31  )
32 
33 ProductionFilterSequence = cms.Sequence(generator*photonfilter)