--- yoda/techmodel/EventReader.h 2004/12/03 22:08:00 2.1 +++ yoda/techmodel/EventReader.h 2006/08/23 14:39:44 6.3 @@ -1,14 +1,13 @@ /** @file * $Author: kusanagi $ - * $Date: 2004/09/21 20:50:54 $ - * $Revision: 2.0 $ + * $Date: 2006/04/05 07:30:54 $ + * $Revision: 6.1 $ * * 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 { @@ -35,7 +34,7 @@ * The Run that is processed. */ TechmodelPamelaRun *Run; //! - void UnpackPscuHeader(void) throw (WrongCRCException, LengthException); + void UnpackPscuHeader(void) throw (WrongCRCHeaderException, LengthException, BackwardCounterException); void UnpackPscuTrailer(void) throw (std::exception); /** @@ -52,13 +51,15 @@ static unsigned int prevPckCounter; static unsigned int prevPckOBT; std::stringstream oss; + ofstream corruptedPacketFile; public: //EventReader(void); EventReader(int); virtual void Init(PamelaRun *); virtual void RunEvent(int); virtual std::string GetVersionInfo(void) const; - virtual int FindStart(void) throw (std::exception); + virtual bool FindStart(void) throw (std::exception); + int archiveCorruptedPacket(long int, long int); ClassDef(EventReader, 1) }; }