test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackFullCloneSelector_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 trackFullCloneSelector = cms.EDFilter("TrackFullCloneSelector",
4  copyExtras = cms.untracked.bool(False), ## copies also extras and rechits on RECO
5 
6  src = cms.InputTag("ctfWithMaterialTracks"),
7  cut = cms.string('(numberOfValidHits >= 8) & (normalizedChi2 < 5)'),
8  # don't set this to true on AOD!
9  copyTrajectories = cms.untracked.bool(False)
10 )
11 
12