CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
btvTracks_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import CommonTools.RecoAlgos.recoTrackSelectorPSet_cfi as _recoTrackSelectorPSet_cfi
4 
5 _content = _recoTrackSelectorPSet_cfi.recoTrackSelectorPSet.clone(
6  maxChi2 = 5.0,
7  tip = 0.2,
8  minRapidity = -9.0,
9  lip = 17.0,
10  ptMin = 1.0,
11  maxRapidity = 9.0,
12  quality = [],
13  minLayer = 0,
14  minHit = 0,
15  minPixelHit = 1,
16  usePV = True,
17 )
18 
19 btvTracks = cms.EDProducer("RecoTrackSelector",
20  _content,
21  copyExtras = cms.untracked.bool(True), ## copies also extras and rechits on RECO
22  copyTrajectories = cms.untracked.bool(False) # don't set this to true on AOD!
23 )
24 
25 btvTrackRefs = cms.EDProducer("RecoTrackViewRefSelector",
26  _content
27 )
28 
29