ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/TrkAnalyzers_cff.py
Revision: 1.10
Committed: Wed Jun 6 13:00:19 2012 UTC (12 years, 11 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_26, QM_2012, HiForest_V02_25, HiForest_V02_24, HiForest_V02_23, HiForest_V02_22, HiForest_V02_21, HiForest_V02_20, HiForest_V02_19, HiForest_V02_18, HiForest_V02_17
Branch point for: branch_44x
Changes since 1.9: +2 -0 lines
Log Message:
quality strings to save

File Contents

# User Rev Content
1 frankma 1.1 import FWCore.ParameterSet.Config as cms
2    
3 yilmaz 1.4 from MitHig.PixelTrackletAnalyzer.trackAnalyzer_cff import *
4 frankma 1.1
5 yilmaz 1.3 anaTrack.trackPtMin = 0.5
6 yilmaz 1.8 anaTrack.useQuality = False
7 yilmaz 1.3 anaTrack.doPFMatching = True
8     anaTrack.pfCandSrc = cms.InputTag("particleFlowTmp")
9     anaTrack.trackSrc = cms.InputTag("hiGeneralCaloMatchedTracks")
10    
11 yilmaz 1.10 anaTrack.qualityStrings = cms.untracked.vstring('highPurity','highPuritySetWithPV')
12    
13 yilmaz 1.5 pixelTrack = anaTrack.clone(trackSrc = cms.InputTag("hiConformalPixelTracks"))
14 yilmaz 1.3 pixelTrack.useQuality = False
15     pixelTrack.trackPtMin = 0.5
16    
17 yilmaz 1.6 mergedTrack = pixelTrack.clone(trackSrc = cms.InputTag("hiMergedTracks"))
18    
19 yilmaz 1.3