CMS 3D CMS Logo

gctErrorAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 gctErrorAnalyzer = cms.EDAnalyzer('GctErrorAnalyzer',
4  #Multiple BX Flags
5  doRCTMBx = cms.untracked.bool(False),
6  doEmuMBx = cms.untracked.bool(False),
7  doGCTMBx = cms.untracked.bool(False),
8  #Plot + Debug Info Flags
9  doRCT = cms.untracked.bool(True),
10  doEg = cms.untracked.bool(True),
11  doIsoDebug = cms.untracked.bool(True),
12  doNonIsoDebug = cms.untracked.bool(True),
13  doJets = cms.untracked.bool(True),
14  doCenJetsDebug = cms.untracked.bool(True),
15  doTauJetsDebug = cms.untracked.bool(True),
16  doForJetsDebug = cms.untracked.bool(True),
17  doHF = cms.untracked.bool(True),
18  doRingSumDebug = cms.untracked.bool(True),
19  doBitCountDebug = cms.untracked.bool(True),
20  doTotalEnergySums = cms.untracked.bool(True),
21  doTotalHtDebug = cms.untracked.bool(True),
22  doTotalEtDebug = cms.untracked.bool(True),
23  doMissingEnergySums = cms.untracked.bool(True),
24  doMissingETDebug = cms.untracked.bool(True),
25  doMissingHTDebug = cms.untracked.bool(True),
26  doExtraMissingHTDebug = cms.untracked.bool(False),
27  #Labels to use for data and emulator
28  dataTag = cms.untracked.InputTag("l1GctHwDigis"),
29  emuTag = cms.untracked.InputTag("valGctDigis"),
30  #Nominally, the following parameters should NOT be changed
31  RCTTrigBx = cms.untracked.int32(0),
32  EmuTrigBx = cms.untracked.int32(0),
33  GCTTrigBx = cms.untracked.int32(0),
34  #Choose the Geometry of the system
35  useSys = cms.untracked.string("P5")
36 )
37