Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:54:45

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 gctErrorAnalyzer = cms.EDAnalyzer('GctErrorAnalyzer',
0004     #Multiple BX Flags
0005     doRCTMBx = cms.untracked.bool(False),
0006     doEmuMBx = cms.untracked.bool(False),
0007     doGCTMBx = cms.untracked.bool(False),
0008     #Plot + Debug Info Flags
0009     doRCT = cms.untracked.bool(True),
0010     doEg = cms.untracked.bool(True),
0011     doIsoDebug = cms.untracked.bool(True),
0012     doNonIsoDebug = cms.untracked.bool(True),
0013     doJets = cms.untracked.bool(True),
0014     doCenJetsDebug = cms.untracked.bool(True),
0015     doTauJetsDebug = cms.untracked.bool(True),
0016     doForJetsDebug = cms.untracked.bool(True),
0017     doHF = cms.untracked.bool(True),
0018     doRingSumDebug = cms.untracked.bool(True),
0019     doBitCountDebug = cms.untracked.bool(True),
0020     doTotalEnergySums = cms.untracked.bool(True),
0021     doTotalHtDebug = cms.untracked.bool(True),
0022     doTotalEtDebug = cms.untracked.bool(True),
0023     doMissingEnergySums = cms.untracked.bool(True),
0024     doMissingETDebug = cms.untracked.bool(True),
0025     doMissingHTDebug = cms.untracked.bool(True),
0026     doExtraMissingHTDebug = cms.untracked.bool(False),
0027     #Labels to use for data and emulator
0028     dataTag = cms.untracked.InputTag("l1GctHwDigis"),
0029     emuTag = cms.untracked.InputTag("valGctDigis"),
0030     #Nominally, the following parameters should NOT be changed
0031     RCTTrigBx = cms.untracked.int32(0),
0032     EmuTrigBx = cms.untracked.int32(0),
0033     GCTTrigBx = cms.untracked.int32(0),
0034     #Choose the Geometry of the system
0035     useSys = cms.untracked.string("P5")          
0036 )
0037