Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:16

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # include event content from RecoHI packages
0004 from RecoHI.HiTracking.RecoHiTracker_EventContent_cff import *
0005 from RecoHI.HiJetAlgos.RecoHiJets_EventContent_cff import *
0006 from RecoHI.HiEgammaAlgos.RecoHiEgamma_EventContent_cff import *
0007 from RecoHI.HiCentralityAlgos.RecoHiCentrality_EventContent_cff import *
0008 from RecoHI.HiEvtPlaneAlgos.RecoHiEvtPlane_EventContent_cff import *
0009 from RecoHI.HiMuonAlgos.RecoHiMuon_EventContent_cff import *
0010 
0011 # combine RECO, AOD, FEVT content from all RecoHI packages
0012 # RecoHI event contents to be included by Configuration.EventContent.EventContentHeavyIons_cff
0013 
0014 # AOD content
0015 RecoHIAOD = cms.PSet(
0016     outputCommands = cms.untracked.vstring()
0017 )
0018 RecoHIAOD.outputCommands.extend(RecoHiTrackerAOD.outputCommands)
0019 RecoHIAOD.outputCommands.extend(RecoHiJetsAOD.outputCommands)
0020 RecoHIAOD.outputCommands.extend(RecoHiEgammaAOD.outputCommands)
0021 RecoHIAOD.outputCommands.extend(RecoHiEvtPlaneAOD.outputCommands)
0022 RecoHIAOD.outputCommands.extend(RecoHiCentralityAOD.outputCommands)
0023 RecoHIAOD.outputCommands.extend(RecoHiMuonAOD.outputCommands)
0024 
0025 # RECO content
0026 RecoHIRECO = cms.PSet(
0027     outputCommands = cms.untracked.vstring()
0028 )
0029 RecoHIRECO.outputCommands.extend(RecoHiTrackerRECO.outputCommands)
0030 RecoHIRECO.outputCommands.extend(RecoHiTrackerLocalRECO.outputCommands)
0031 RecoHIRECO.outputCommands.extend(RecoHiJetsRECO.outputCommands)
0032 RecoHIRECO.outputCommands.extend(RecoHiEgammaRECO.outputCommands)
0033 RecoHIRECO.outputCommands.extend(RecoHiEvtPlaneRECO.outputCommands)
0034 RecoHIRECO.outputCommands.extend(RecoHiCentralityRECO.outputCommands)
0035 RecoHIRECO.outputCommands.extend(RecoHiMuonRECO.outputCommands)
0036 
0037 # FEVT content
0038 RecoHIFEVT = cms.PSet(
0039     outputCommands = cms.untracked.vstring()
0040 )
0041 RecoHIFEVT.outputCommands.extend(RecoHiTrackerFEVT.outputCommands)
0042 RecoHIFEVT.outputCommands.extend(RecoHiTrackerLocalFEVT.outputCommands)
0043 RecoHIFEVT.outputCommands.extend(RecoHiJetsFEVT.outputCommands)
0044 RecoHIFEVT.outputCommands.extend(RecoHiEgammaFEVT.outputCommands)
0045 RecoHIFEVT.outputCommands.extend(RecoHiEvtPlaneFEVT.outputCommands)
0046 RecoHIFEVT.outputCommands.extend(RecoHiCentralityFEVT.outputCommands)
0047 RecoHIFEVT.outputCommands.extend(RecoHiMuonFEVT.outputCommands)
0048