File indexing completed on 2025-01-22 07:34:13
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from ..modules.hltParticleFlowClusterHBHE_cfi import *
0004 from ..modules.hltParticleFlowClusterHCAL_cfi import *
0005 from ..modules.hltParticleFlowRecHitHBHE_cfi import *
0006 from ..modules.hltParticleFlowClusterECAL_cfi import *
0007 from ..modules.hltParticleFlowClusterECALUncorrected_cfi import *
0008 from ..modules.hltParticleFlowClusterHF_cfi import *
0009 from ..modules.hltParticleFlowClusterHO_cfi import *
0010 from ..modules.hltParticleFlowRecHitECALUnseeded_cfi import *
0011 from ..modules.hltParticleFlowRecHitHF_cfi import *
0012 from ..modules.hltParticleFlowRecHitHO_cfi import *
0013 from ..modules.hltPfClusterRefsForJets_cfi import *
0014 from ..modules.hltPfClusterRefsForJetsECAL_cfi import *
0015 from ..modules.hltPfClusterRefsForJetsHCAL_cfi import *
0016 from ..modules.hltPfClusterRefsForJetsHF_cfi import *
0017 from ..modules.hltPfClusterRefsForJetsHGCAL_cfi import *
0018 from ..modules.hltPfClusterRefsForJetsHO_cfi import *
0019
0020 HLTPfClusterRefsForJetsSequence = cms.Sequence(hltParticleFlowRecHitECALUnseeded+
0021 hltParticleFlowRecHitHF+
0022 hltParticleFlowRecHitHO+
0023 hltParticleFlowRecHitHBHE+
0024 hltParticleFlowClusterHBHE+
0025 hltParticleFlowClusterHCAL+
0026 hltParticleFlowClusterECAL+
0027 hltParticleFlowClusterECALUncorrected+
0028 hltParticleFlowClusterHF+
0029 hltParticleFlowClusterHO+
0030 hltPfClusterRefsForJetsECAL+
0031 hltPfClusterRefsForJetsHCAL+
0032 hltPfClusterRefsForJetsHF+
0033 hltPfClusterRefsForJetsHGCAL+
0034 hltPfClusterRefsForJetsHO+
0035 hltPfClusterRefsForJets)