/** @file * $Author: kusanagi $ * $Date: 2006/02/04 12:37:45 $ * $Revision: 5.1 $ * * Header file for the algorithms used to read the techmodel data file. */ #ifndef TECHMODEL_ALGORITHM_H #define TECHMODEL_ALGORITHM_H #include "event/Algorithm.h" #include "event/Exception.h" namespace pamela { namespace techmodel { /** * Base algorithm for all techmodel reader. */ class TechmodelAlgorithm: public Algorithm { protected: ifstream *InputFile; //! void SetInputStream(PamelaRun*); TechmodelAlgorithm(const PacketType*, std::string); public: virtual void Init(PamelaRun*); virtual void RunEvent(int, long int = 0) throw (Exception){} ClassDef(TechmodelAlgorithm, 1) }; } } #endif /* TECHMODEL_ALGORITHM_H */