CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
digitizers_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # configuration to model pileup for initial physics phase
12 
13 theDigitizers = cms.PSet(
14  pixel = cms.PSet(
15  pixelDigitizer
16  ),
17  strip = cms.PSet(
18  stripDigitizer
19  ),
20  ecal = cms.PSet(
21  ecalDigitizer
22  ),
23  hcal = cms.PSet(
24  hcalDigitizer
25  ),
26  castor = cms.PSet(
27  castorDigitizer
28  ),
29  puVtx = cms.PSet(
30  pileupVtxDigitizer
31  )
32 )
33 
34 theDigitizersValid = cms.PSet(
35  pixel = cms.PSet(
36  pixelDigitizer
37  ),
38  strip = cms.PSet(
39  stripDigitizer
40  ),
41  ecal = cms.PSet(
42  ecalDigitizer
43  ),
44  hcal = cms.PSet(
45  hcalDigitizer
46  ),
47  castor = cms.PSet(
48  castorDigitizer
49  ),
50  puVtx = cms.PSet(
51  pileupVtxDigitizer
52  ),
53  mergedtruth = cms.PSet(
54  trackingParticles
55  )
56 )
57 
58 
59 
60 
61