CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ecalDigis_cfi.py
Go to the documentation of this file.
2 
3 simEcalDigis = cms.EDProducer("EcalSelectiveReadoutProducer",
4  # Label of input EB and EE digi collections
5  digiProducer = cms.string('simEcalUnsuppressedDigis'),
6 
7  # Instance name of input EB digi collections
8  EBdigiCollection = cms.string(''),
9 
10  # Instance name of input EB digi collections
11  EEdigiCollection = cms.string(''),
12 
13  # Instance name of output EB SR flags collection
14  EBSrFlagCollection = cms.string('ebSrFlags'),
15 
16  # Instance name of output EE SR flags collection
17  EESrFlagCollection = cms.string('eeSrFlags'),
18 
19  # Instance name of output EB digis collection
20  EBSRPdigiCollection = cms.string('ebDigis'),
21 
22  # Instance name of output EE digis collection
23  EESRPdigiCollection = cms.string('eeDigis'),
24 
25  # Switch for reading SRP settings from condition database
26  configFromCondDB = cms.bool(True),
27 
28  # Label name of input ECAL trigger primitive collection
29  trigPrimProducer = cms.string('simEcalTriggerPrimitiveDigis'),
30 
31  # Instance name of ECAL trigger primitive collection
32  trigPrimCollection = cms.string(''),
33 
34  #switch to run w/o trigger primitive. For debug use only
35  trigPrimBypass = cms.bool(False),
36 
37  # Mode selection for "Trig bypass" mode
38  # 0: TT thresholds applied on sum of crystal Et's
39  # 1: TT thresholds applies on compressed Et from Trigger primitive
40  # @ee trigPrimByPass_ switch
41  trigPrimBypassMode = cms.int32(0),
42 
43  #for debug mode only:
44  trigPrimBypassLTH = cms.double(1.0),
45 
46  #for debug mode only:
47  trigPrimBypassHTH = cms.double(1.0),
48 
49  #for debug mode only
50  trigPrimBypassWithPeakFinder = cms.bool(True),
51 
52  #number of events whose TT and SR flags must be dumped (for debug purpose):
53  dumpFlags = cms.untracked.int32(0),
54 
55  #logical flag to write out SrFlags
56  writeSrFlags = cms.untracked.bool(True),
57 
58  #switch to apply selective readout decision on the digis and produce
59  #the "suppressed" digis
60  produceDigis = cms.untracked.bool(True),
61 
62  #Trigger Tower Flag to use when a flag is not found from the input
63  #Trigger Primitive collection. Must be one of the following values:
64  # 0: low interest, 1: mid interest, 3: high interest
65  # 4: forced low interest, 5: forced mid interest, 7: forced high interest
66  defaultTtf = cms.int32(4)
67 )