CMS 3D CMS Logo

hcalDigis_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # conservative choice
4 # 0=per channel, 1=triggerOR, 2=depthOR
5 # conservative choice
6 # 0=per channel, 1=triggerOR, 2=depthOR
7 # conservative choice
8 # 0=per channel, 1=triggerOR, 2=depthOR
9 import FWCore.ParameterSet.Config as cms
10 
11 simHcalDigis = cms.EDProducer("HcalSimpleAmplitudeZS",
12  digiLabel = cms.string("simHcalUnsuppressedDigis"),
13  hbhe = cms.PSet(
14  firstSample = cms.int32(4),
15  markAndPass = cms.bool(False),
16  samplesToAdd = cms.int32(2),
17  twoSided = cms.bool(False),
18  level = cms.int32(2)
19  ),
20  hf = cms.PSet(
21  firstSample = cms.int32(3),
22  markAndPass = cms.bool(False),
23  samplesToAdd = cms.int32(1),
24  twoSided = cms.bool(False),
25  level = cms.int32(2)
26  ),
27  ho = cms.PSet(
28  firstSample = cms.int32(4),
29  markAndPass = cms.bool(False),
30  samplesToAdd = cms.int32(2),
31  twoSided = cms.bool(False),
32  level = cms.int32(2)
33  )
34 )
35 
36 
37