1 |
/** @file |
2 |
* $Author: messineo $ |
3 |
* $Date: 2008-03-04 18:09:31 $ |
4 |
* $Revision: 1.4 $ |
5 |
* |
6 |
* Implementation of the CalInitReader class. |
7 |
*/ |
8 |
|
9 |
#include "ReaderAlgorithms.h" |
10 |
|
11 |
using namespace pamela::techmodel; |
12 |
|
13 |
/** |
14 |
* Constructor. |
15 |
*/ |
16 |
CalInitReader::CalInitReader(void): |
17 |
TechmodelAlgorithm(PacketType::CalInit, "TechmodelCalInitReader") { |
18 |
calInit = new CalInitEvent(); |
19 |
} |
20 |
|
21 |
/** |
22 |
* Get a string with the version info of the algorithm. |
23 |
*/ |
24 |
std::string CalInitReader::GetVersionInfo(void) const { |
25 |
return |
26 |
"$Trailer: /home/cvsmanager/yoda/techmodel/CalInitReader.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 CalInitReader::Init(PamelaRun *run) { |
34 |
run->WriteSubPacket(this, &calInit, calInit->Class()); |
35 |
} |
36 |
|
37 |
/** |
38 |
* Unpack the CalInit event |
39 |
* The CPU does not add any CRC control at the packet end. |
40 |
* @param EventNumber |
41 |
* @param dataLength |
42 |
*/ |
43 |
void CalInitReader::PKT_RunEvent(char* subData, long int dataLength) throw (WrongCRCException){ |
44 |
calInit->calInitData = new TArrayC(dataLength, subData); |
45 |
} |