//----------------------------------------------------------- // 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 // Collaborating Class Declarations -- class TpcCluster; class TpcTester : public TObject { public: // Constructors/Destructors --------- TpcTester(){} virtual ~TpcTester(){} // Operations ---------------------- void testDebugStream(); void testDebugStreamFunctionBlock(); private: // Private Data Members ------------ // Private Methods ----------------- public: ClassDef(TpcTester,1) }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------