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