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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
import FWCore.ParameterSet.Config as cms
from ..sequences.HLTDoFullUnpackingEgammaEcalSequence_cfi import *
from ..sequences.HLTEGammaDoLocalHcalSequence_cfi import *
from ..sequences.HLTElePixelMatchUnseededSequence_cfi import *
from ..sequences.HLTFastJetForEgammaSequence_cfi import *
from ..sequences.HLTGsfElectronUnseededSequence_cfi import *
from ..sequences.HLTHgcalTiclPFClusteringForEgammaUnseededSequence_cfi import *
from ..sequences.HLTPFClusteringForEgammaUnseededSequence_cfi import *
from ..sequences.HLTPFHcalClusteringForEgammaSequence_cfi import *
from ..sequences.HLTTrackingSequence_cfi import *
from ..modules.hltEgammaCandidatesUnseeded_cfi import *
from ..modules.hltEgammaClusterShapeUnseeded_cfi import *
from ..modules.hltEgammaEcalPFClusterIsoUnseeded_cfi import *
from ..modules.hltEgammaEleGsfTrackIsoUnseeded_cfi import *
from ..modules.hltEgammaEleL1TrkIsoUnseeded_cfi import *
from ..modules.hltEgammaHcalPFClusterIsoUnseeded_cfi import *
from ..modules.hltEgammaHGCALIDVarsUnseeded_cfi import *
from ..modules.hltEgammaHGCalLayerClusterIsoUnseeded_cfi import *
from ..modules.hltEgammaHoverEUnseeded_cfi import *
from ..modules.hltEG32EtUnseededFilter_cfi import *
from ..modules.hltEgammaCandidatesWrapperUnseeded_cfi import *
from ..modules.hltEGL1SeedsForSingleEleIsolatedFilter_cfi import *
from ..modules.hltEle32WPTightBestGsfChi2UnseededFilter_cfi import *
from ..modules.hltEle32WPTightBestGsfNLayerITUnseededFilter_cfi import *
from ..modules.hltEle32WPTightClusterShapeSigmavvUnseededFilter_cfi import *
from ..modules.hltEle32WPTightClusterShapeSigmawwUnseededFilter_cfi import *
from ..modules.hltEle32WPTightClusterShapeUnseededFilter_cfi import *
from ..modules.hltEle32WPTightEcalIsoUnseededFilter_cfi import *
from ..modules.hltEle32WPTightGsfDetaUnseededFilter_cfi import *
from ..modules.hltEle32WPTightGsfDphiUnseededFilter_cfi import *
from ..modules.hltEle32WPTightGsfOneOEMinusOneOPUnseededFilter_cfi import *
from ..modules.hltEle32WPTightGsfTrackIsoFromL1TracksUnseededFilter_cfi import *
from ..modules.hltEle32WPTightGsfTrackIsoUnseededFilter_cfi import *
from ..modules.hltEle32WPTightHcalIsoUnseededFilter_cfi import *
from ..modules.hltEle32WPTightHEUnseededFilter_cfi import *
from ..modules.hltEle32WPTightHgcalHEUnseededFilter_cfi import *
from ..modules.hltEle32WPTightHgcalIsoUnseededFilter_cfi import *
from ..modules.hltEle32WPTightPixelMatchUnseededFilter_cfi import *
from ..modules.hltEle32WPTightPMS2UnseededFilter_cfi import *
HLTEle32WPTightUnseededSequence = cms.Sequence(
hltEGL1SeedsForSingleEleIsolatedFilter
+HLTDoFullUnpackingEgammaEcalSequence
+HLTPFClusteringForEgammaUnseededSequence
+HLTHgcalTiclPFClusteringForEgammaUnseededSequence
+hltEgammaCandidatesUnseeded
+hltEgammaCandidatesWrapperUnseeded
+hltEG32EtUnseededFilter
+hltEgammaClusterShapeUnseeded
+hltEle32WPTightClusterShapeUnseededFilter
+hltEgammaHGCALIDVarsUnseeded
+hltEle32WPTightClusterShapeSigmavvUnseededFilter
+hltEle32WPTightClusterShapeSigmawwUnseededFilter
+hltEle32WPTightHgcalHEUnseededFilter
+HLTEGammaDoLocalHcalSequence
+HLTFastJetForEgammaSequence
+hltEgammaHoverEUnseeded
+hltEle32WPTightHEUnseededFilter
+hltEgammaEcalPFClusterIsoUnseeded
+hltEle32WPTightEcalIsoUnseededFilter
+hltEgammaHGCalLayerClusterIsoUnseeded
+hltEle32WPTightHgcalIsoUnseededFilter
+HLTPFHcalClusteringForEgammaSequence
+hltEgammaHcalPFClusterIsoUnseeded
+hltEle32WPTightHcalIsoUnseededFilter
+HLTElePixelMatchUnseededSequence
+hltEle32WPTightPixelMatchUnseededFilter
+hltEle32WPTightPMS2UnseededFilter
+HLTGsfElectronUnseededSequence
+hltEle32WPTightGsfOneOEMinusOneOPUnseededFilter
+hltEle32WPTightGsfDetaUnseededFilter
+hltEle32WPTightGsfDphiUnseededFilter
+hltEle32WPTightBestGsfNLayerITUnseededFilter
+hltEle32WPTightBestGsfChi2UnseededFilter
+hltEgammaEleL1TrkIsoUnseeded
+hltEle32WPTightGsfTrackIsoFromL1TracksUnseededFilter
+HLTTrackingSequence
+hltEgammaEleGsfTrackIsoUnseeded
+hltEle32WPTightGsfTrackIsoUnseededFilter
)
|