CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mixLowLumPU_mixProdStep1_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # E33 cm-2s-1
4 # mb
5 import FWCore.ParameterSet.Config as cms
6 
7 # this is the configuration to model pileup in the low-luminosity phase
10 
11 mix = cms.EDProducer("MixingModule",
12  LabelPlayback = cms.string(''),
13  maxBunch = cms.int32(3),
14  minBunch = cms.int32(-5), ## in terms of 25 ns
15 
16  bunchspace = cms.int32(25), ## nsec
17  mixProdStep1 = cms.bool(True),
18  mixProdStep2 = cms.bool(False),
19 
20  playback = cms.untracked.bool(False),
21  useCurrentProcessOnly = cms.bool(False),
22 
23  input = cms.SecSource("PoolSource",
24  nbPileupEvents = cms.PSet(
25  sigmaInel = cms.double(80.0),
26  Lumi = cms.double(2.8)
27  ),
28  type = cms.string('poisson'),
29  sequential = cms.untracked.bool(False),
30  fileNames = FileNames
31  ),
32  mixObjects = cms.PSet(
33  mixCH = cms.PSet(
34  mixCaloHits
35  ),
36  mixTracks = cms.PSet(
37  mixSimTracks
38  ),
39  mixVertices = cms.PSet(
40  mixSimVertices
41  ),
42  mixSH = cms.PSet(
43  mixSimHits
44  ),
45  mixHepMC = cms.PSet(
46  mixHepMCProducts
47  )
48  )
49 )
50 
51