CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/SimCalorimetry/HcalTrigPrimProducers/python/hcaltpdigi_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 simHcalTriggerPrimitiveDigis = cms.EDProducer("HcalTrigPrimDigiProducer",
00004     peakFilter = cms.bool(True),
00005     weights = cms.vdouble(1.0, 1.0), ##hardware algo        
00006     latency = cms.int32(1),
00007     FG_threshold = cms.uint32(12), ## threshold for setting fine grain bit
00008     ZS_threshold = cms.uint32(1),  ## threshold for setting fine grain bit
00009     numberOfSamples = cms.int32(4),
00010     numberOfPresamples = cms.int32(2),
00011     MinSignalThreshold = cms.uint32(0), # For HF PMT veto
00012     PMTNoiseThreshold = cms.uint32(0),  # For HF PMT veto
00013 #
00014     #vdouble weights = { -1, -1, 1, 1} //low lumi algo
00015     # Input digi label (_must_ be without zero-suppression!)
00016     inputLabel = cms.VInputTag(cms.InputTag('simHcalUnsuppressedDigis'),
00017                                cms.InputTag('simHcalUnsuppressedDigis')),
00018     InputTagFEDRaw = cms.InputTag("source"),
00019     RunZS = cms.bool(False),
00020     FrontEndFormatError = cms.bool(False), # Front End Format Error, for real data only
00021     PeakFinderAlgorithm = cms.int32(2)
00022 
00023 )