1 |
|
/** @file |
2 |
|
* $Author: kusanagi $ |
3 |
|
* $Date: 2006/02/07 17:11:10 $ |
4 |
|
* $Revision: 6.0 $ |
5 |
|
* |
6 |
|
* Implementation of the S4AlarmReader class. |
7 |
|
*/ |
8 |
|
|
|
// Implementation of the S4AlarmReader class. |
|
|
|
|
|
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cxx/logger.h> |
|
|
extern "C" { |
|
|
#include "CRC.h" |
|
|
} |
|
|
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
9 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
10 |
|
|
|
using namespace pamela; |
|
11 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
12 |
|
|
13 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.S4AlarmReader")); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.S4AlarmReader")); |
26 |
*/ |
*/ |
27 |
std::string S4AlarmReader::GetVersionInfo(void) const { |
std::string S4AlarmReader::GetVersionInfo(void) const { |
28 |
return |
return |
29 |
"$Trailer: /home/cvsmanager/yoda/techmodel/s4AlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Trailer: /home/cvsmanager/yoda/techmodel/s4AlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
30 |
} |
} |
31 |
|
|
32 |
/** |
/** |
41 |
|
|
42 |
/** |
/** |
43 |
* Unpack the S4Alarm event from an input file. |
* Unpack the S4Alarm event from an input file. |
44 |
|
* The CPU does not add any CRC control at the packet end. |
45 |
|
* @param EventNumber |
46 |
|
* @param dataLength |
47 |
*/ |
*/ |
48 |
void S4AlarmReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
void S4AlarmReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
49 |
|
char subData[dataLength]; |
50 |
|
memset(subData, 0, dataLength*sizeof(char)); |
51 |
|
InputFile->read(subData, sizeof(subData)); |
52 |
|
s4Alarm->s4AlarmData = new TArrayC(dataLength, subData); |
53 |
} |
} |
54 |
|
|