//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Testerclass for tpc package // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCTESTER_HH #define TPCTESTER_HH // Base Class Headers ---------------- #include "TObject.h" // Collaborating Class Headers ------- #include #include "TMatrixD.h" // Collaborating Class Declarations -- class PndTpcCluster; class PndTpcTester : public TObject { public: // Constructors/Destructors --------- PndTpcTester(){} virtual ~PndTpcTester(){} // Operations ---------------------- void testDebugStream(); void testDebugStreamFunctionBlock(); TMatrixD testCOG(); private: // Private Data Members ------------ // Private Methods ----------------- public: ClassDef(PndTpcTester,1) }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------