ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/CmsHi/JetAnalysis/python/TrkAnalyzers_cff.py
Revision: 1.2
Committed: Mon Oct 17 17:49:54 2011 UTC (13 years, 6 months ago) by yjlee
Content type: text/x-python
Branch: MAIN
CVS Tags: HiForest_V02_06, HiForest_V02_05, HiForest_V02_04, HiForest_V02_03, HiForest_V02_02, HiForest_V02_01, HiForest_V02_00, hi44X_02, hi441_1
Changes since 1.1: +1 -1 lines
Log Message:
Moved track collection back to hiSelectedTracks

File Contents

# Content
1 import FWCore.ParameterSet.Config as cms
2
3 from edwenger.HiTrkEffAnalyzer.hitrkEffAnalyzer_cff import *
4
5 hitrkEffAnalyzer_akpu3pf = hitrkEffAnalyzer.clone(
6 # evt
7 neededCentBins = cms.untracked.vint32(0, 1, 3, 11, 19, 35),
8 # trk selection
9 tracks = "hiSelectedTracks",
10 fiducialCut = True,
11 # setup
12 fillNtuples = False,
13 ptBinScheme = 3, # coarse binning for jet ana
14 # jet-trk
15 jets = 'akPu3PFpatJets',
16 trkAcceptedJet = True, # jet |eta|<2
17 useJetEtMode = 2, # mode2: jet1, jet1 or jet_pt=0
18 jetTrkOnly = False # only trks in 0.8 cone or not
19 )
20
21 hitrkEffAna_akpu3pf = cms.Sequence(cutsTPForFak*cutsTPForEff*hitrkEffAnalyzer_akpu3pf)