1 |
schiefer |
1.1 |
import FWCore.ParameterSet.Config as cms
|
2 |
|
|
|
3 |
|
|
|
4 |
|
|
#
|
5 |
|
|
# reconstruct particle flow
|
6 |
|
|
#
|
7 |
|
|
|
8 |
|
|
# event setup
|
9 |
|
|
from Configuration.StandardSequences.Geometry_cff import *
|
10 |
schiefer |
1.2 |
#from Configuration.StandardSequences.FakeConditions_cff import *
|
11 |
schiefer |
1.1 |
from Configuration.StandardSequences.MagneticField_cff import *
|
12 |
|
|
from RecoJets.Configuration.CaloTowersES_cfi import *
|
13 |
|
|
|
14 |
|
|
|
15 |
|
|
# track reconstruction
|
16 |
|
|
from RecoLocalTracker.SiPixelRecHits.SiPixelRecHits_cfi import *
|
17 |
|
|
from RecoLocalTracker.SiStripRecHitConverter.SiStripRecHitConverter_cfi import *
|
18 |
|
|
from RecoTracker.Configuration.RecoTracker_cff import *
|
19 |
|
|
|
20 |
|
|
recoTracks = cms.Sequence(siPixelRecHits*siStripMatchedRecHits*ckftracks)
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
# particle flow reconstruction
|
24 |
|
|
from RecoEgamma.EgammaElectronProducers.electronSequence_cff import *
|
25 |
|
|
from RecoParticleFlow.Configuration.RecoParticleFlow_cff import *
|
26 |
|
|
|
27 |
|
|
recoPF = cms.Path(recoTracks*electronSequence*particleFlowReco)
|