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.
2 
3 # configuration to model pileup for initial physics phase
11 
12 theDigitizers = cms.PSet(
13  pixel = cms.PSet(
14  pixelDigitizer
15  ),
16  strip = cms.PSet(
17  stripDigitizer
18  ),
19  ecal = cms.PSet(
20  ecalDigitizer
21  ),
22  hcal = cms.PSet(
23  hcalDigitizer
24  ),
25  castor = cms.PSet(
26  castorDigitizer
27  )
28 )
29 
30 theDigitizersValid = cms.PSet(
31  pixel = cms.PSet(
32  pixelDigitizer
33  ),
34  strip = cms.PSet(
35  stripDigitizer
36  ),
37  ecal = cms.PSet(
38  ecalDigitizer
39  ),
40  hcal = cms.PSet(
41  hcalDigitizer
42  ),
43  castor = cms.PSet(
44  castorDigitizer
45  ),
46  mergedtruth = cms.PSet(
47  trackingParticles
48  )
49 )
50 
51 
52 
53 
54