CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2_patch1/src/RecoVertex/TertiaryTracksVertexFinder/src/TertiaryTracksVertexFinder.cc

Go to the documentation of this file.
00001 
00002 #include "RecoVertex/TertiaryTracksVertexFinder/interface/TertiaryTracksVertexFinder.h"
00003 
00004 #include "RecoVertex/KalmanVertexFit/interface/KalmanVertexFitter.h"
00005 #include "RecoVertex/KalmanVertexFit/interface/KalmanVertexUpdator.h"
00006 #include "RecoVertex/KalmanVertexFit/interface/KalmanVertexTrackCompatibilityEstimator.h"
00007 
00008 
00009 TertiaryTracksVertexFinder::TertiaryTracksVertexFinder() 
00010 {
00011   KalmanVertexFitter vf(false);
00012   KalmanVertexUpdator<5> vu;
00013   KalmanVertexTrackCompatibilityEstimator<5> ve;
00014 
00015   theFinder = new ConfigurableTertiaryTracksVertexFinder (&vf, &vu, &ve);
00016 }
00017 
00018 
00019 TertiaryTracksVertexFinder::~TertiaryTracksVertexFinder() 
00020 {
00021   delete theFinder;
00022 }
00023 
00024