CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/L1Trigger/L1GctAnalyzer/python/gctErrorAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 gctErrorAnalyzer = cms.EDAnalyzer('GctErrorAnalyzer',
00004     #Multiple BX Flags
00005     doRCTMBx = cms.untracked.bool(False),
00006     doEmuMBx = cms.untracked.bool(False),
00007     doGCTMBx = cms.untracked.bool(False),
00008     #Plot + Debug Info Flags
00009     doRCT = cms.untracked.bool(True),
00010     doEg = cms.untracked.bool(True),
00011     doIsoDebug = cms.untracked.bool(True),
00012     doNonIsoDebug = cms.untracked.bool(True),
00013     doJets = cms.untracked.bool(True),
00014     doCenJetsDebug = cms.untracked.bool(True),
00015     doTauJetsDebug = cms.untracked.bool(True),
00016     doForJetsDebug = cms.untracked.bool(True),
00017     doHF = cms.untracked.bool(True),
00018     doRingSumDebug = cms.untracked.bool(True),
00019     doBitCountDebug = cms.untracked.bool(True),
00020     doTotalEnergySums = cms.untracked.bool(True),
00021     doTotalHtDebug = cms.untracked.bool(True),
00022     doTotalEtDebug = cms.untracked.bool(True),
00023     doMissingEnergySums = cms.untracked.bool(True),
00024     doMissingETDebug = cms.untracked.bool(True),
00025     doMissingHTDebug = cms.untracked.bool(True),
00026     doExtraMissingHTDebug = cms.untracked.bool(False),
00027     #Labels to use for data and emulator
00028     dataTag = cms.untracked.InputTag("l1GctHwDigis"),
00029     emuTag = cms.untracked.InputTag("valGctDigis"),
00030     #Nominally, the following parameters should NOT be changed
00031     RCTTrigBx = cms.untracked.int32(0),
00032     EmuTrigBx = cms.untracked.int32(0),
00033     GCTTrigBx = cms.untracked.int32(0),
00034     #Choose the Geometry of the system
00035     useSys = cms.untracked.string("P5")          
00036 )
00037