| 1 |
/** @file |
/** @file |
| 2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 3 |
* $Date: 2004/07/06 12:20:23 $ |
* $Date: 2004/12/03 22:08:01 $ |
| 4 |
* $Revision: 1.1.1.1 $ |
* $Revision: 2.2 $ |
| 5 |
* |
* |
| 6 |
* Header file for the algorithms used to read the techmodel data file. |
* Header file for the algorithms used to read the techmodel data file. |
| 7 |
*/ |
*/ |
| 10 |
#define TECHMODEL_ALGORITHM_H |
#define TECHMODEL_ALGORITHM_H |
| 11 |
|
|
| 12 |
#include "event/Algorithm.h" |
#include "event/Algorithm.h" |
| 13 |
//#include "event/EventHeader.h" |
#include "event/Exception.h" |
| 14 |
|
|
| 15 |
namespace pamela { |
namespace pamela { |
| 16 |
namespace techmodel { |
namespace techmodel { |
| 24 |
TechmodelAlgorithm(const PacketType*, std::string); |
TechmodelAlgorithm(const PacketType*, std::string); |
| 25 |
public: |
public: |
| 26 |
virtual void Init(PamelaRun*); |
virtual void Init(PamelaRun*); |
| 27 |
virtual void RunEvent(int, long int = 0) {} |
virtual void RunEvent(int, long int = 0) throw (Exception){} |
| 28 |
ClassDef(TechmodelAlgorithm, 1) |
ClassDef(TechmodelAlgorithm, 1) |
| 29 |
}; |
}; |
| 30 |
} |
} |