//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Fitter for clusters in the tpc // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCCLUSTERFITTER_HH #define TPCCLUSTERFITTER_HH #include #include "TpcClusterFitLikeli.h" class TpcCluster; class TpcDigi; class TpcClusterFitter { public: TpcClusterFitter(); TpcCluster* doFit(const std::vector& digis); private: TpcClusterFitLikeli fLikeli; }; #endif