ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/TrkAnalyzers_cff.py
Revision: 1.11
Committed: Wed Sep 12 15:27:01 2012 UTC (12 years, 7 months ago) by yilmaz
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_63, HiForest_V02_62, HiForest_V02_61, HiForest_V02_60, HiForest_V02_59, HiForest_V02_58, HiForest_V02_57, HiForest_V02_56, HiForest_V02_55, HiForest_V02_54, HiForest_V02_53, HiForest_V02_52, HiForest_V02_51, HiForest_V02_50, HiForest_V02_49, HiForest_V02_48, HiForest_V02_47, HiForest_V02_46, HiForest_V02_45, HiForest_V02_44, HiForest_V02_43, HiForest_V02_42, HiForest_V02_41, HiForest_V02_40, HiForest_V02_39, HiForest_V02_38, HiForest_V02_37, HiForest_V02_36, HiForest_V02_35, HiForest_V02_34, HiForest_V02_33, HiForest_V02_32, HiForest_V02_31, HiForest_V02_30, HiForest_V02_27
Changes since 1.10: +3 -0 lines
Log Message:
update

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