ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/TrkAnalyzers_cff.py
Revision: 1.12
Committed: Tue Jan 29 18:19:25 2013 UTC (12 years, 3 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_85, HiForest_V02_84, HiForest_V02_83, HiForest_V02_82, HiForest_V02_81, HiForest_V02_80, HiForest_V02_79, HiForest_V02_78, HiForest_V02_77, HiForest_V02_76, HiForest_V02_75, HiForest_V02_74, HiForest_V02_73, HiForest_V02_72, HiForest_V02_71, HiForest_V02_70, HiForest_V02_69, HiForest_V02_68, HiForest_V02_67, HiForest_V02_66, HiForest_V02_65, HiForest_V02_64, HEAD
Changes since 1.11: +1 -1 lines
Log Message:
Track and GenParticle thresholds to 0

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.12 anaTrack.trackPtMin = 0.
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.11 ppTrack = anaTrack.clone(trackSrc = cms.InputTag("generalTracks"),
20     vertexSrc = ["offlinePrimaryVerticesWithBS"]
21     )
22 yilmaz 1.3