CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoVZero/VZeroFinding/python/VZeros_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pixelVZeros = cms.EDProducer("VZeroProducer",
00004     #
00005     trackCollection  = cms.InputTag("allTracks"),
00006     vertexCollection = cms.InputTag("pixel3Vertices"),
00007     #
00008     minImpactPositiveDaughter = cms.double(0.2),
00009     minImpactNegativeDaughter = cms.double(0.2),
00010     #
00011     maxDca = cms.double(0.2),
00012     #
00013     minCrossingRadius = cms.double(0.2),
00014     maxCrossingRadius = cms.double(5.0),
00015     #
00016     maxImpactMother = cms.double(0.2)
00017 )
00018