| 1 |
|
/** @file |
| 2 |
|
* $Author: kusanagi $ |
| 3 |
|
* $Date: 2006/02/04 12:37:45 $ |
| 4 |
|
* $Revision: 5.1 $ |
| 5 |
|
* |
| 6 |
|
* Implementation of the InitHeaderReader class. |
| 7 |
|
*/ |
| 8 |
|
|
|
// Implementation of the InitHeaderReader class. |
|
|
|
|
|
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cxx/logger.h> |
|
|
extern "C" { |
|
|
#include <sys/time.h> |
|
|
#include "CRC.h" |
|
|
} |
|
|
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
| 9 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
| 10 |
|
|
|
#include "event/InitHeaderEvent.h" |
|
|
|
|
|
using namespace pamela; |
|
| 11 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
| 12 |
|
|
| 13 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.InitHeaderReader")); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.InitHeaderReader")); |
| 26 |
*/ |
*/ |
| 27 |
std::string InitHeaderReader::GetVersionInfo(void) const { |
std::string InitHeaderReader::GetVersionInfo(void) const { |
| 28 |
return |
return |
| 29 |
"$Header: /home/cvsmanager/yoda/techmodel/InitHeaderReader.cpp,v 4.4 2005/05/28 10:44:11 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/InitHeaderReader.cpp,v 5.1 2006/02/04 12:37:45 kusanagi Exp $\n"; |
| 30 |
} |
} |
| 31 |
|
|
| 32 |
/** |
/** |
| 33 |
* Initialize the algorithm with a special run. This will initialize the |
Initialize the algorithm with a special run. This will initialize the |
| 34 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
| 35 |
|
* |
| 36 |
|
* @param run |
| 37 |
*/ |
*/ |
| 38 |
void InitHeaderReader::Init(PamelaRun *run) { |
void InitHeaderReader::Init(PamelaRun *run) { |
| 39 |
logger->debug(_T("Initialize")); |
logger->debug(_T("Initialize")); |
| 41 |
run->WriteSubPacket(this, &initHeader, initHeader->Class()); |
run->WriteSubPacket(this, &initHeader, initHeader->Class()); |
| 42 |
} |
} |
| 43 |
|
|
| 44 |
|
|
| 45 |
/** |
/** |
| 46 |
* Unpack the InitHeader event from an input file. |
* Unpack the InitHeader event from an input file. |
| 47 |
|
* @param EventNumber |
| 48 |
|
* @param dataLength |
| 49 |
*/ |
*/ |
| 50 |
void InitHeaderReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
void InitHeaderReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
| 51 |
|
|
| 52 |
|
char subData[dataLength]; |
| 53 |
|
UINT16 subCRC; //calculated CRC of the data |
| 54 |
|
UINT16 readCRC; //CRC read from the end of the subpacket |
| 55 |
|
long int length = dataLength - 2; //the block of data |
| 56 |
|
|
| 57 |
|
InputFile->read(subData, sizeof(subData)); |
| 58 |
|
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, length); |
| 59 |
|
readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF); |
| 60 |
|
|
| 61 |
|
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for InitHeader Packet "); |
| 62 |
|
|
| 63 |
} |
} |
| 64 |
|
|