CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mixLowLumPU_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(False),
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  seed = cms.int32(1234567),
29  type = cms.string('poisson'),
30  sequential = cms.untracked.bool(False),
31  fileNames = FileNames
32  ),
33  mixObjects = cms.PSet(
34  mixCH = cms.PSet(
35  mixCaloHits
36  ),
37  mixTracks = cms.PSet(
38  mixSimTracks
39  ),
40  mixVertices = cms.PSet(
41  mixSimVertices
42  ),
43  mixSH = cms.PSet(
44  mixSimHits
45  ),
46  mixHepMC = cms.PSet(
47  mixHepMCProducts
48  )
49  )
50 )
51 
52