00001 /* @version $Revision: 1328 $ * @modifiedby $Author: jacquem $ * @lastmodified $Date: 2011-10-03 17:04:17 +0200 (Mon, 03 Oct 2011) $ */ 00002 #ifndef TESTMICRORC_HH 00003 #define TESTMICRORC_HH 00004 00005 ////////////////////////////////////////////////////////////////////////// 00006 // // 00007 // TEST for MICROMEGAS READOUT // 00008 // // 00009 ////////////////////////////////////////////////////////////////////////// 00010 00011 00012 00013 #include "CalibMicrorocParser.hh" 00014 00015 #define TESTMICRORC "testMicroroc" 00016 00017 00018 class TestMicrorocParser : public CalibMicrorocParser { 00019 00020 00021 public: 00022 TestMicrorocParser(Run& aRun, FILE *aFile,ui32 firstEventId); 00023 virtual ~TestMicrorocParser() ; // Un destucteur virtuel permet d'apple le destructeur de la classe derivee 00024 static const char *type() { return TESTMICRORC; } 00025 int getNextEvent(Event& event); 00026 00027 private: 00028 bool serialNumberReaded; 00029 std::string getCtestString(void) {return "motif Capa externes";} ; 00030 00031 }; 00032 00033 #endif 00034 00035