CMS 3D CMS Logo

pyquenDefault_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # MSEL=1 (hard QCD in) + pyquen needed initializations
4 import FWCore.ParameterSet.Config as cms
5 
7 generator = cms.EDFilter("PyquenGeneratorFilter",
8  doQuench = cms.bool(True),
9  doIsospin = cms.bool(True),
10  qgpInitialTemperature = cms.double(1.0), ## initial temperature of QGP; allowed range [0.2,2.0]GeV;
11  pythiaPylistVerbosity = cms.untracked.int32(0),
12  doRadiativeEnLoss = cms.bool(True), ## if true, perform partonic radiative en loss
13  bFixed = cms.double(0.0), ## fixed impact param (fm); valid only if cflag_=0
14  angularSpectrumSelector = cms.int32(0), ## angular emitted gluon spectrum :
15  pythiaHepMCVerbosity = cms.untracked.bool(False),
16  PythiaParameters = cms.PSet(pyquenPythiaDefaultBlock,
17  parameterSets = cms.vstring('pythiaUESettings','ppJets','pythiaPromptPhotons','kinematics'),
18  kinematics = cms.vstring('CKIN(3) = 50','CKIN(4) = 80')
19  ),
20  qgpProperTimeFormation = cms.double(0.1), ## proper time of QGP formation; allowed range [0.01,10.0]fm/c;
21  # Center of mass energy
22  comEnergy = cms.double(2800.0),
23 
24  qgpNumQuarkFlavor = cms.int32(0), ## number of active quark flavors in qgp; allowed values: 0,1,2,3
25  cFlag = cms.int32(0), ## centrality flag
26  bMin = cms.double(0.0), ## min impact param (fm); valid only if cflag_!=0
27  bMax = cms.double(0.0), ## max impact param (fm); valid only if cflag_!=0
28  maxEventsToPrint = cms.untracked.int32(0), ## events to print if pythiaPylistVerbosit
29  aBeamTarget = cms.double(208.0), ## beam/target atomic number
30  doCollisionalEnLoss = cms.bool(False), ## if true, perform partonic collisional en loss
31  embeddingMode = cms.bool(False)
32 
33  )
34 
35