CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
source_diJets_cfi.py
Go to the documentation of this file.
2 
4 source = cms.Source(
5  "PythiaSource",
6  pythiaVerbosity = cms.untracked.bool(False),
7  # possibility to run single or double back-to-back particles with PYTHIA
8  # if ParticleID = 0, run PYTHIA
9  ParticleID = cms.untracked.int32(1),
10  DoubleParticle = cms.untracked.bool(True),
11  Ptmin = cms.untracked.double(20.0),
12  Ptmax = cms.untracked.double(700.0),
13 # Emin = cms.untracked.double(10.0),
14 # Emax = cms.untracked.double(10.0),
15  Etamin = cms.untracked.double(0.0),
16  Etamax = cms.untracked.double(1.0),
17  Phimin = cms.untracked.double(0.0),
18  Phimax = cms.untracked.double(360.0),
19  PythiaParameters = cms.PSet(
20  pythiaUESettingsBlock,
21  # Tau jets only
22  pythiaJets = cms.vstring(),
23  # This is a vector of ParameterSet names to be read, in this order
24  parameterSets = cms.vstring(
25  'pythiaUESettings',
26  'pythiaJets'
27  )
28 
29  )
30 
31 )
32 
33 
34 
35