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
Error occurred while calculating annotation data.
Log Message:
Track and GenParticle thresholds to 0

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 from MitHig.PixelTrackletAnalyzer.trackAnalyzer_cff import *
4
5 anaTrack.trackPtMin = 0.
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 ppTrack = anaTrack.clone(trackSrc = cms.InputTag("generalTracks"),
20 vertexSrc = ["offlinePrimaryVerticesWithBS"]
21 )
22