Skip to content

Commit

Permalink
Merge pull request #13310 from cms-l1t-offline/pr-unpack-gct-in-stage-1
Browse files Browse the repository at this point in the history
Add gct unpacker back into stage-1 unpacking sequence
  • Loading branch information
cmsbuild committed Feb 17, 2016
2 parents 52380cb + f2c3399 commit fa93348
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions L1Trigger/Configuration/python/L1TRawToDigi_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def unpack_legacy():


def unpack_stage1():
global csctfDigis, dttfDigis, gtDigis,caloStage1Digis,caloStage1FinalDigis
global csctfDigis, dttfDigis, gtDigis,caloStage1Digis,caloStage1FinalDigis,gctDigis
global caloStage1LegacyFormatDigis
global L1TRawToDigi_Stage1
import EventFilter.CSCTFRawToDigi.csctfunpacker_cfi
Expand All @@ -49,7 +49,11 @@ def unpack_stage1():
csctfDigis.producer = 'rawDataCollector'
dttfDigis.DTTF_FED_Source = 'rawDataCollector'
gtDigis.DaqGtInputTag = 'rawDataCollector'
L1TRawToDigi_Stage1 = cms.Sequence(csctfDigis+dttfDigis+gtDigis+caloStage1Digis+caloStage1FinalDigis+caloStage1LegacyFormatDigis)
# unpack GCT digis too, so DQM offline doesn't crash:
import EventFilter.GctRawToDigi.l1GctHwDigis_cfi
gctDigis = EventFilter.GctRawToDigi.l1GctHwDigis_cfi.l1GctHwDigis.clone()
gctDigis.inputLabel = 'rawDataCollector'
L1TRawToDigi_Stage1 = cms.Sequence(csctfDigis+dttfDigis+gtDigis+caloStage1Digis+caloStage1FinalDigis+caloStage1LegacyFormatDigis+gctDigis)

def unpack_stage2():
global L1TRawToDigi_Stage2
Expand Down

0 comments on commit fa93348

Please sign in to comment.