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

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