1 |
/** @file |
/** @file |
2 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
3 |
* $Date: 2004/09/21 20:50:54 $ |
* $Date: 2004/10/17 12:28:38 $ |
4 |
* $Revision: 2.0 $ |
* $Revision: 2.1 $ |
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/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 |
} |
} |