CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
cosmicTrackSplitter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cosmicTrackSplitter = cms.EDProducer("CosmicTrackSplitter",
4  stripFrontInvalidHits = cms.bool(True),
5  stripBackInvalidHits = cms.bool(True),
6  stripAllInvalidHits = cms.bool(False),
7  replaceWithInactiveHits = cms.bool(False),
8  excludePixelHits = cms.bool(False),
9  tracks = cms.InputTag("cosmictrackfinderP5"),
10  tjTkAssociationMapTag = cms.InputTag("cosmictrackfinderP5"),
11  minimumHits = cms.uint32(6),
12  detsToIgnore = cms.vuint32(),
13  dzCut = cms.double( 9999.0 ),
14  dxyCut = cms.double( 9999.0 )
15  )
16