00001 #ifndef PARSER_HH 00002 #define PARSER_HH 00003 00004 ////////////////////////////////////////////////////////////////////////// 00005 // // 00006 // Parser for MICROMEGAS READOUT // 00007 // // 00008 ////////////////////////////////////////////////////////////////////////// 00009 00010 ////////////////////////////////////////////////////////////////////////// 00011 /// CLASS // 00012 ////////////////////////////////////////////////////////////////////////// 00013 class Parser { 00014 friend std::ostream& operator <<(std::ostream &out, const Parser &x); 00015 00016 public: 00017 Parser(); 00018 ~Parser(); 00019 00020 00021 private: 00022 ui32 currentEventId; 00023 00024 }; 00025 00026 #endif 00027