1 |
mocchiut |
1.1 |
/** @file |
2 |
mocchiut |
1.2 |
* $Author: mocchiut $ |
3 |
|
|
* $Date: 2008/09/23 07:20:26 $ |
4 |
|
|
* $Revision: 1.1.1.1 $ |
5 |
mocchiut |
1.1 |
* |
6 |
|
|
* Implementation of the base class for the algorithms used to read the |
7 |
|
|
* techmodel data file of Pamela. |
8 |
|
|
*/ |
9 |
|
|
|
10 |
|
|
|
11 |
|
|
#include "TechmodelAlgorithm.h" |
12 |
|
|
|
13 |
|
|
using namespace pamela; |
14 |
|
|
using namespace pamela::techmodel; |
15 |
|
|
|
16 |
|
|
TechmodelAlgorithm::TechmodelAlgorithm(const PacketType* type, std::string name): |
17 |
|
|
Algorithm(type, name) {} |
18 |
|
|
|
19 |
|
|
/** |
20 |
|
|
* On default, the Init() do nothing |
21 |
|
|
*/ |
22 |
|
|
void TechmodelAlgorithm::Init(PamelaRun* run) {} |
23 |
|
|
|
24 |
mocchiut |
1.2 |
//TObject *GetPtr(TString name){return this;} |
25 |
|
|
|
26 |
mocchiut |
1.1 |
ClassImp(TechmodelAlgorithm) |