//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Testerclass for tpcreco package // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCRECOTESTER_HH #define TPCRECOTESTER_HH // Base Class Headers ---------------- #include "TObject.h" // Collaborating Class Headers ------- #include // Collaborating Class Declarations -- class TpcCluster; class TpcRecoTester : public TObject { public: // Constructors/Destructors --------- TpcRecoTester(){} virtual ~TpcRecoTester(){} // Operations ---------------------- void testConfMap(); void testConfMapFit(); int testConfFinder(); void testConfFinderStat(); void testBasicConfFit(); void testRotated(); private: void maketoytracks(int n, std::vector& cll); // Private Data Members ------------ // Private Methods ----------------- public: ClassDef(TpcRecoTester,1) }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------