--- yoda/techmodel/EventReader.h 2004/09/21 20:50:54 2.0 +++ yoda/techmodel/EventReader.h 2004/12/03 22:08:00 2.1 @@ -1,13 +1,14 @@ /** @file * $Author: kusanagi $ - * $Date: 2004/09/21 20:24:33 $ - * $Revision: 1.3 $ + * $Date: 2004/09/21 20:50:54 $ + * $Revision: 2.0 $ * * Header file for the algorithms used to read the techmodel data file. */ #include "TechmodelPamelaRun.h" #include "TechmodelAlgorithm.h" +#include "Exception.h" namespace pamela { namespace techmodel { @@ -34,7 +35,7 @@ * The Run that is processed. */ TechmodelPamelaRun *Run; //! - int UnpackPscuHeader(void) throw (std::exception); + void UnpackPscuHeader(void) throw (WrongCRCException, LengthException); void UnpackPscuTrailer(void) throw (std::exception); /** @@ -50,7 +51,8 @@ */ static unsigned int prevPckCounter; static unsigned int prevPckOBT; - public: + std::stringstream oss; + public: //EventReader(void); EventReader(int); virtual void Init(PamelaRun *);