Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009 import FWCore.ParameterSet.Config as cms
00010
00011 simHcalDigis = cms.EDProducer("HcalSimpleAmplitudeZS",
00012 digiLabel = cms.InputTag("simHcalUnsuppressedDigis"),
00013 hbhe = cms.PSet(
00014 firstSample = cms.int32(4),
00015 markAndPass = cms.bool(False),
00016 samplesToAdd = cms.int32(2),
00017 twoSided = cms.bool(False),
00018 level = cms.int32(2)
00019 ),
00020 hf = cms.PSet(
00021 firstSample = cms.int32(3),
00022 markAndPass = cms.bool(False),
00023 samplesToAdd = cms.int32(1),
00024 twoSided = cms.bool(False),
00025 level = cms.int32(2)
00026 ),
00027 ho = cms.PSet(
00028 firstSample = cms.int32(4),
00029 markAndPass = cms.bool(False),
00030 samplesToAdd = cms.int32(2),
00031 twoSided = cms.bool(False),
00032 level = cms.int32(2)
00033 )
00034 )
00035
00036
00037