CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PileUpProducer_cff.py
Go to the documentation of this file.
2 
3 from FastSimulation.PileUpProducer.PileUpFiles_cff import puFileNames
4 
5 famosPileUp = cms.EDProducer(
6  "PileUpProducer",
7  # The conditions for pile-up event generation
8  PileUpSimulatorBlock = cms.PSet(
9  PileUpSimulator = cms.PSet(
10  # The file with the last minimum bias events read in the previous run
11  # to be put in the local running directory (if desired)
12  inputFile = cms.untracked.string('PileUpInputFile.txt'),
13  # Special files of minimum bias events (generated with
14  # cmsRun FastSimulation/PileUpProducer/test/producePileUpEvents_cfg.py)
15  fileNames = puFileNames.fileNames,
16  averageNumber = cms.double(0.0)
17  )
18  ),
19  VertexGenerator = cms.PSet(
20  type = cms.string('BetaFunc'),
21  Phi = cms.double(0.0),
22  Y0 = cms.double(0.3929),
23  BetaStar = cms.double(70.0),
24  Emittance = cms.double(5.86e-08),
25  SigmaZ = cms.double(6.16),
26  TimeOffset = cms.double(0.0),
27  Alpha = cms.double(0.0),
28  X0 = cms.double(0.244),
29  Z0 = cms.double(0.4145)
30  )
31  )
32