00001 #ifndef _ALVFIT_H_ 00002 #define _ALVFIT_H_ 00003 00004 #include "AlVertexFit.h" 00005 #include "VfAlgo.h" 00006 #include "MCAlgo.h" 00007 00008 //#include "AlUserTrack.h" 00009 //#include "AlConcreteVertices.h" 00010 //#include "AlephCollection.h" 00011 00013 // 00014 // Dase class for vertex fits 00015 // 00016 // 11/01 Kay Huettmann 00017 // 00019 00020 00021 00022 class AlVfit : public AlVertexFit { 00023 00024 public: 00025 AlVfit(){ 00026 MCAlgo* theAlgo = new MCAlgo; 00027 _algo = theAlgo; 00028 } 00029 virtual ~AlVfit(){ 00030 delete _algo; 00031 } 00032 00033 }; 00034 #endif 00035