CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
hcaltpdigi_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 simHcalTriggerPrimitiveDigis = cms.EDProducer("HcalTrigPrimDigiProducer",
4  peakFilter = cms.bool(True),
5  weights = cms.vdouble(1.0, 1.0), ##hardware algo
6  latency = cms.int32(1),
7  FG_threshold = cms.uint32(12), ## threshold for setting fine grain bit
8  ZS_threshold = cms.uint32(1), ## threshold for setting fine grain bit
9  numberOfSamples = cms.int32(4),
10  numberOfPresamples = cms.int32(2),
11  numberOfSamplesHF = cms.int32(4),
12  numberOfPresamplesHF = cms.int32(2),
13  MinSignalThreshold = cms.uint32(0), # For HF PMT veto
14  PMTNoiseThreshold = cms.uint32(0), # For HF PMT veto
15 #
16  #vdouble weights = { -1, -1, 1, 1} //low lumi algo
17  # Input digi label (_must_ be without zero-suppression!)
18  inputLabel = cms.VInputTag(cms.InputTag('simHcalUnsuppressedDigis'),
19  cms.InputTag('simHcalUnsuppressedDigis')),
20  InputTagFEDRaw = cms.InputTag("rawDataCollector"),
21  RunZS = cms.bool(False),
22  FrontEndFormatError = cms.bool(False), # Front End Format Error, for real data only
23  PeakFinderAlgorithm = cms.int32(2)
24 
25 )