CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
randomNumberGeneratorService_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # Random number generators for (optional) modules up to trackingMaterialProducer
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 RandomNumberGeneratorService = cms.Service("RandomNumberGeneratorService",
8  VtxSmeared = cms.PSet(
9  initialSeed = cms.untracked.uint32(863771),
10  engineName = cms.untracked.string('HepJamesRandom')
11  ),
12  trackingMaterialProducer = cms.PSet(
13  initialSeed = cms.untracked.uint32(288269),
14  engineName = cms.untracked.string('HepJamesRandom')
15  ),
16  generator = cms.PSet(
17  initialSeed = cms.untracked.uint32(220675),
18  engineName = cms.untracked.string('HepJamesRandom')
19  )
20  )