Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:23

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 #
0004 # attention: default is changed to work on unsuppressed digis!! ##############
0005 #
0006 simEcalEBTriggerPrimitiveDigis = cms.EDProducer("EcalEBTrigPrimProducer",
0007     BarrelOnly = cms.bool(True),
0008     barrelEcalDigis = cms.InputTag("simEcalUnsuppressedDigis"),
0009     binOfMaximum = cms.int32(6), ## optional from release 200 on, from 1-10
0010     Famos = cms.bool(False),
0011     TcpOutput = cms.bool(False),
0012     Debug = cms.bool(False),
0013     nOfSamples = cms.int32(1)
0014 )
0015 
0016