1 |
mocchiut |
1.1 |
/** @file |
2 |
|
|
* $Author: messineo $ |
3 |
|
|
* $Date: 2008-03-04 18:09:31 $ |
4 |
|
|
* $Revision: 1.4 $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the TofInitReader class. |
7 |
|
|
*/ |
8 |
|
|
|
9 |
|
|
#include "ReaderAlgorithms.h" |
10 |
|
|
|
11 |
|
|
using namespace pamela::techmodel; |
12 |
|
|
|
13 |
|
|
/** |
14 |
|
|
* Constructor. |
15 |
|
|
*/ |
16 |
|
|
TofInitReader::TofInitReader(void): |
17 |
|
|
TechmodelAlgorithm(PacketType::TofInit, "TechmodelTofInitReader") { |
18 |
|
|
tofInit = new TofInitEvent(); |
19 |
|
|
} |
20 |
|
|
|
21 |
|
|
/** |
22 |
|
|
* Get a string with the version info of the algorithm. |
23 |
|
|
*/ |
24 |
|
|
std::string TofInitReader::GetVersionInfo(void) const { |
25 |
|
|
return |
26 |
|
|
"$Trailer: /home/cvsmanager/yoda/techmodel/TofInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
27 |
|
|
} |
28 |
|
|
|
29 |
|
|
/** |
30 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
31 |
|
|
* event reader routines for all packet types. |
32 |
|
|
*/ |
33 |
|
|
void TofInitReader::Init(PamelaRun *run) { |
34 |
|
|
run->WriteSubPacket(this, &tofInit, tofInit->Class()); |
35 |
|
|
} |
36 |
|
|
|
37 |
|
|
/** |
38 |
|
|
* Unpack the TofInit event |
39 |
|
|
* The CPU does not add any CRC control at the packet end. |
40 |
|
|
* @param EventNumber |
41 |
|
|
* @param dataLength |
42 |
|
|
*/ |
43 |
|
|
void TofInitReader::PKT_RunEvent(char* subData, long int dataLength) throw (WrongCRCException){ |
44 |
|
|
tofInit->tofInitData = new TArrayC(dataLength, subData); |
45 |
|
|
} |