//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Data object carrying infomration about a fitted track // (residuals, chi2,...) // This class is meant to serve as a container which can be // used witht the ROOT TreeViewer to produce plots // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TRACKFITSTAT_HH #define TRACKFITSTAT_HH // Base Class Headers ---------------- #include "TObject.h" // Collaborating Class Headers ------- #include // remove if you do not need streaming op #include // Collaborating Class Declarations -- class TrackFitStat : public TObject{ public: // Constructors/Destructors --------- TrackFitStat(){} virtual ~TrackFitStat(){} // Operators // Accessors ----------------------- // Modifiers ----------------------- void fillTpcResX(const std::vector& r){_TpcResX=r;} void fillTpcResY(const std::vector& r){_TpcResY=r;} // Operations ---------------------- private: // Private Data Members ------------ std::vector _TpcResX; std::vector _TpcResY; // Private Methods ----------------- public: ClassDef(TrackFitStat,1) }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------