Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:37

0001 import FWCore.ParameterSet.Config as cms
0002 from  PhysicsTools.NanoAOD.common_cff import *
0003 
0004 # IMPORTANT: This variable has to end in "Table"! 
0005 #     Otherwise, the NanoAODOutputModule will ignore it by default 
0006 #     (e.g., the `keep nanoaodFlatTable_*Table_*_*"` bit in 
0007 #     process.NanoAODEDMEventContent.outputCommands, 
0008 #     see cmssw source code for details on this arcane syntax)
0009 hcalDigiSortedTable= cms.EDProducer("HcalDigiSortedTableProducer",
0010   tagQIE11    = cms.untracked.InputTag("hcalDigis"),
0011   tagQIE10    = cms.untracked.InputTag("hcalDigis"),
0012   tagHO       = cms.untracked.InputTag("hcalDigis"),
0013   #taguMNio   = cms.untracked.InputTag("hcalDigis"),
0014   #StoreLaser = cms.untracked.bool(False),
0015   #chargeSkim = cms.untracked.double(0)
0016 )
0017 
0018 hcalDigiSortedTableTask = cms.Task(hcalDigiSortedTable)
0019 hcalDigiSortedTableSeq = cms.Sequence(hcalDigiSortedTable)