ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/ExtraTrackReco_cff.py
Revision: 1.4.2.1
Committed: Thu Jan 31 00:25:40 2013 UTC (12 years, 3 months ago) by yilmaz
Content type: text/x-python
Branch: branch_44x
Changes since 1.4: +3 -39 lines
Log Message:
44X updates

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 yilmaz 1.3 hiCaloCompatibleGeneralTracksQuality = cms.EDFilter("TrackSelector",
13     src = cms.InputTag("hiGeneralCaloMatchedTracks"),
14     cut = cms.string(
15     'quality("highPuritySetWithPV")')
16     )
17    
18     hiGeneralTracksQuality = cms.EDFilter("TrackSelector",
19     src = cms.InputTag("hiGeneralCaloMatchedTracks"),
20     cut = cms.string(
21     'quality("highPurity")')
22     )
23    
24     hiSelectedTrackQuality = cms.EDFilter("TrackSelector",
25     src = cms.InputTag("hiGeneralCaloMatchedTracks"),
26     cut = cms.string(
27     'quality("highPurity")&&algo()==4')
28     )
29 frankma 1.1
30 yilmaz 1.2
31    
32    
33     hiTracks = cms.EDFilter("TrackSelector",
34 yilmaz 1.4.2.1 src = cms.InputTag("hiGeneralCaloMatchedTracks"),
35     cut = cms.string(
36 yilmaz 1.2 'quality("highPurity")')
37 yilmaz 1.4.2.1 )
38 yilmaz 1.3
39    
40