00001 // Test algorthm for AtlfastShower 00002 // 00003 // P. Sherwood 00004 00005 #ifndef FASTSHOWER_SHOWERTESTER_H 00006 #define FASTSHOWER_SHOWERTESTER_H 00007 00008 #ifndef FASTSHOWER_TESTSTAT_H 00009 #include "FastShowerUtils/TestStat.h" 00010 #endif 00011 00012 00013 namespace FastShower{ 00014 class ShowerTester{ 00015 00016 public: 00017 ShowerTester(bool verbose):m_verbose(verbose){}; 00018 ~ShowerTester(); 00019 00020 void execute(); 00021 void finalize(); 00022 00023 private: 00024 TestStat m_testStat; 00025 bool m_verbose; 00026 }; 00027 00028 } // end of namespace bracket 00029 #endif 00030 00031 00032 00033 00034 00035