Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 cosmicTrackSplitter = cms.EDProducer("CosmicTrackSplitter",
00004 stripFrontInvalidHits = cms.bool(True),
00005 stripBackInvalidHits = cms.bool(True),
00006 stripAllInvalidHits = cms.bool(False),
00007 replaceWithInactiveHits = cms.bool(False),
00008 excludePixelHits = cms.bool(False),
00009 tracks = cms.InputTag("cosmictrackfinderP5"),
00010 tjTkAssociationMapTag = cms.InputTag("cosmictrackfinderP5"),
00011 minimumHits = cms.uint32(6),
00012 detsToIgnore = cms.vuint32(),
00013 dzCut = cms.double( 9999.0 ),
00014 dxyCut = cms.double( 9999.0 )
00015 )
00016