CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/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     latency = cms.int32(1),
00005     weights = cms.vdouble(1.0, 1.0), ##hardware algo            
00006 
00007     #vdouble weights = { -1, -1, 1, 1} //low lumi algo
00008     peakFilter = cms.bool(True),
00009     # Input digi label (_must_ be without zero-suppression!)
00010     numberOfSamples = cms.int32(4),
00011     numberOfPresamples = cms.int32(2),
00012     inputLabel = cms.VInputTag(cms.InputTag('simHcalUnsuppressedDigis'),cms.InputTag('simHcalUnsuppressedDigis')),
00013     FG_threshold = cms.uint32(12), ## threshold for setting fine grain bit
00014     ZS_threshold = cms.uint32(1), ## threshold for setting fine grain bit
00015     MinSignalThreshold = cms.uint32(0), # For HF PMT veto
00016     PMTNoiseThreshold = cms.uint32(0), # For HF PMT veto
00017     RunZS = cms.untracked.bool(False),
00018     FrontEndFormatError = cms.untracked.bool(False) # Front End Format Error, for real data only
00019 )