CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/FastSimulation/PileUpProducer/python/PileUpSimulator_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Take pileup events from files
00004 PileUpSimulatorBlock = cms.PSet(
00005     PileUpSimulator = cms.PSet(
00006         # The file with the last minimum bias events read in the previous run
00007         # to be put in the local running directory (if desired)
00008         inputFile = cms.untracked.string('PileUpInputFile.txt'),
00009         # Special files of minimum bias events (generated with 
00010         # cmsRun FastSimulation/PileUpProducer/test/producePileUpEvents_cfg.py)
00011         fileNames = cms.untracked.vstring(
00012             'MinBias14TeV_001.root', 
00013             'MinBias14TeV_002.root', 
00014             'MinBias14TeV_003.root', 
00015             'MinBias14TeV_004.root', 
00016             'MinBias14TeV_005.root', 
00017             'MinBias14TeV_006.root', 
00018             'MinBias14TeV_007.root', 
00019             'MinBias14TeV_008.root', 
00020             'MinBias14TeV_009.root', 
00021             'MinBias14TeV_010.root'),
00022         averageNumber = cms.double(0.0)
00023     )
00024 )
00025