CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/FastSimulation/Tracking/python/globalCombinedSeeds_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 newCombinedSeeds = cms.EDProducer(
00004     "SeedCombiner",
00005     seedCollections = cms.VInputTag(
00006     cms.InputTag('iterativeInitialSeeds','InitialPixelTriplets'),
00007 #    cms.InputTag('iterativeLowPtTripletSeeds','LowPtPixelTriplets'),
00008     cms.InputTag('iterativePixelPairSeeds','PixelPair'),
00009     cms.InputTag('iterativeMixedTripletStepSeeds','MixedTriplets'),
00010     cms.InputTag('iterativePixelLessSeeds','PixelLessPairs'),
00011     )
00012     )
00013 
00014 
00015