1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import FWCore.ParameterSet.Config as cms
from ..modules.hltParticleFlowClusterHBHE_cfi import *
from ..modules.hltParticleFlowClusterHCAL_cfi import *
from ..modules.hltParticleFlowRecHitHBHE_cfi import *
from ..modules.hltParticleFlowClusterECAL_cfi import *
from ..modules.hltParticleFlowClusterECALUncorrected_cfi import *
from ..modules.hltParticleFlowClusterHF_cfi import *
from ..modules.hltParticleFlowClusterHO_cfi import *
from ..modules.hltParticleFlowRecHitECALUnseeded_cfi import *
from ..modules.hltParticleFlowRecHitHF_cfi import *
from ..modules.hltParticleFlowRecHitHO_cfi import *
from ..modules.hltPfClusterRefsForJets_cfi import *
from ..modules.hltPfClusterRefsForJetsECAL_cfi import *
from ..modules.hltPfClusterRefsForJetsHCAL_cfi import *
from ..modules.hltPfClusterRefsForJetsHF_cfi import *
from ..modules.hltPfClusterRefsForJetsHGCAL_cfi import *
from ..modules.hltPfClusterRefsForJetsHO_cfi import *
HLTPfClusterRefsForJetsSequence = cms.Sequence(hltParticleFlowRecHitECALUnseeded+
hltParticleFlowRecHitHF+
hltParticleFlowRecHitHO+
hltParticleFlowRecHitHBHE+
hltParticleFlowClusterHBHE+
hltParticleFlowClusterHCAL+
hltParticleFlowClusterECAL+
hltParticleFlowClusterECALUncorrected+
hltParticleFlowClusterHF+
hltParticleFlowClusterHO+
hltPfClusterRefsForJetsECAL+
hltPfClusterRefsForJetsHCAL+
hltPfClusterRefsForJetsHF+
hltPfClusterRefsForJetsHGCAL+
hltPfClusterRefsForJetsHO+
hltPfClusterRefsForJets)
|