1 |
kusanagi |
6.1 |
/** @file |
2 |
|
|
* $Author: kusanagi $ |
3 |
mocchiut |
6.3 |
* $Date: 2006/05/30 19:10:02 $ |
4 |
|
|
* $Revision: 6.2 $ |
5 |
kusanagi |
6.1 |
* |
6 |
|
|
* Implementation of the Ac1AlarmReader class. |
7 |
|
|
*/ |
8 |
|
|
|
9 |
|
|
#include "ReaderAlgorithms.h" |
10 |
|
|
|
11 |
|
|
using namespace pamela::techmodel; |
12 |
|
|
|
13 |
|
|
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.Ac1AlarmReader")); |
14 |
|
|
|
15 |
|
|
/** |
16 |
|
|
* Constructor. |
17 |
|
|
*/ |
18 |
|
|
Ac1AlarmReader::Ac1AlarmReader(void): |
19 |
|
|
TechmodelAlgorithm(PacketType::Ac1Alarm, "TechmodelAc1AlarmReader") { |
20 |
|
|
logger->debug(_T("Constructor")); |
21 |
|
|
acAlarm = new Ac1AlarmEvent(); |
22 |
|
|
} |
23 |
|
|
|
24 |
|
|
/** |
25 |
|
|
* Get a string with the version info of the algorithm. |
26 |
|
|
*/ |
27 |
|
|
std::string Ac1AlarmReader::GetVersionInfo(void) const { |
28 |
|
|
return |
29 |
|
|
"$Trailer: /home/cvsmanager/yoda/techmodel/ac1AlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
/** |
33 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
34 |
|
|
* event reader routines for all packet types. |
35 |
|
|
*/ |
36 |
|
|
void Ac1AlarmReader::Init(PamelaRun *run) { |
37 |
|
|
SetInputStream(run); |
38 |
|
|
run->WriteSubPacket(this, &acAlarm, acAlarm->Class()); |
39 |
|
|
logger->debug(_T("Initialize")); |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
/** |
43 |
|
|
* Unpack the Ac1Alarm event from an input file. |
44 |
|
|
*/ |
45 |
|
|
void Ac1AlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
46 |
|
|
|
47 |
|
|
char subData[dataLength]; |
48 |
mocchiut |
6.3 |
memset(subData, 0, dataLength*sizeof(char)); |
49 |
kusanagi |
6.1 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
50 |
|
|
acAlarm->ac1AlarmData = new TArrayC(dataLength, subData); |
51 |
|
|
|
52 |
|
|
} |
53 |
|
|
|