CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
btvTracks_cfi.py
Go to the documentation of this file.
2 
3 _content = cms.PSet(
4  src = cms.InputTag("generalTracks"),
5  maxChi2 = cms.double(5.0),
6  tip = cms.double(0.2),
7  minRapidity = cms.double(-9.0),
8  lip = cms.double(17.0),
9  ptMin = cms.double(1.0),
10  maxRapidity = cms.double(9.0),
11  quality = cms.vstring(),
12  algorithm = cms.vstring(),
13  minLayer = cms.int32(0),
14  min3DLayer = cms.int32(0),
15  minHit = cms.int32(8),
16  minPixelHit = cms.int32(2),
17  beamSpot = cms.InputTag("offlineBeamSpot"),
18  usePV = cms.bool(True),
19  vertexTag = cms.InputTag('offlinePrimaryVertices'),
20 )
21 
22 btvTracks = cms.EDProducer("RecoTrackSelector",
23  _content,
24  copyExtras = cms.untracked.bool(True), ## copies also extras and rechits on RECO
25  copyTrajectories = cms.untracked.bool(False) # don't set this to true on AOD!
26 )
27 
28 btvTrackRefs = cms.EDFilter("RecoTrackRefSelector",
29  _content
30 )
31 
32