CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/PhysicsTools/RecoAlgos/python/TrackFullCloneSelector_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 TrackFullCloneSelector = cms.EDFilter("TrackFullCloneSelector",
00004     copyExtras = cms.untracked.bool(False), ## copies also extras and rechits on RECO
00005 
00006     src = cms.InputTag("ctfWithMaterialTracks"),
00007     cut = cms.string('(numberOfValidHits >= 8) & (normalizedChi2 < 5)'),
00008     # don't set this to true on AOD!
00009     copyTrajectories = cms.untracked.bool(False)
00010 )
00011 
00012