ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/ExtraTrackReco_cff.py
Revision: 1.1
Committed: Tue Jul 12 14:12:03 2011 UTC (13 years, 9 months ago) by frankma
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_09, HiForest_V02_08, HiForest_V02_07, HiForest_V02_06, HiForest_V02_05, HiForest_V02_04, HiForest_V02_03, HiForest_V02_02, HiForest_V02_01, HiForest_V02_00, hi44X_02, hi441_1, hi441_0, hi413_11, hi413_10, hi413_09, hi413_08, hi413_07, hi413_06, hi413_05, hi413_04, hi413_03, hi413_02, hi413_01, hi39X_01, tag_d20110915, cmssw39x_base, cmssw39X_base
Branch point for: cmssw39x_branch
Log Message:
pf and calo jet analysis in 39X

File Contents

# User Rev Content
1 frankma 1.1 import FWCore.ParameterSet.Config as cms
2    
3     # pixel triplet tracking (HI Tracking)
4     from RecoLocalTracker.Configuration.RecoLocalTracker_cff import *
5     from RecoHI.Configuration.Reconstruction_HI_cff import *
6    
7     #Track Reco
8     rechits = cms.Sequence(siPixelRecHits * siStripMatchedRecHits)
9     hiTrackReReco = cms.Sequence(rechits * heavyIonTracking)
10    
11     # good track selection
12     from edwenger.HiTrkEffAnalyzer.TrackSelections_cff import *
13    
14     hiextraTrackReco = cms.Sequence(
15     hiPostGlobalPrimTracks *
16     hiGoodTightTracksSelection
17     )