1 |
kusanagi |
5.1 |
/** @file |
2 |
kusanagi |
5.2 |
* $Author: kusanagi $ |
3 |
kusanagi |
6.2 |
* $Date: 2006/05/30 19:10:02 $ |
4 |
|
|
* $Revision: 6.1 $ |
5 |
kusanagi |
5.1 |
* |
6 |
|
|
* Implementation of the CalibTrailerReader class. |
7 |
|
|
*/ |
8 |
kusanagi |
1.1 |
|
9 |
|
|
#include "ReaderAlgorithms.h" |
10 |
|
|
|
11 |
|
|
using namespace pamela::techmodel; |
12 |
|
|
|
13 |
kusanagi |
1.2 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk1Reader")); |
14 |
kusanagi |
1.1 |
|
15 |
|
|
/** |
16 |
|
|
* Constructor. |
17 |
|
|
*/ |
18 |
|
|
CalibTrailerReader::CalibTrailerReader(void): |
19 |
|
|
TechmodelAlgorithm(PacketType::CalibTrailer, "TechmodelCalibTrailerReader") { |
20 |
kusanagi |
1.2 |
logger->debug(_T("Constructor")); |
21 |
kusanagi |
1.1 |
calibTrailer = new CalibTrailerEvent(); |
22 |
|
|
} |
23 |
|
|
|
24 |
|
|
/** |
25 |
|
|
* Get a string with the version info of the algorithm. |
26 |
|
|
*/ |
27 |
|
|
std::string CalibTrailerReader::GetVersionInfo(void) const { |
28 |
|
|
return |
29 |
kusanagi |
5.3 |
"$Trailer: /home/cvsmanager/yoda/techmodel/CalibTrailerReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
30 |
kusanagi |
1.1 |
} |
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 CalibTrailerReader::Init(PamelaRun *run) { |
37 |
kusanagi |
1.2 |
logger->debug(_T("Initialize")); |
38 |
kusanagi |
1.1 |
SetInputStream(run); |
39 |
|
|
run->WriteSubPacket(this, &calibTrailer, calibTrailer->Class()); |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
/** |
43 |
|
|
* Unpack the CalibTrailer event from an input file. |
44 |
|
|
*/ |
45 |
kusanagi |
5.1 |
void CalibTrailerReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
46 |
|
|
char subData[dataLength]; |
47 |
|
|
UINT16 subCRC; //calculated CRC of the data |
48 |
|
|
UINT16 readCRC; //CRC read from the end of the subpacket |
49 |
|
|
long int length = dataLength - 2; //the block of data |
50 |
|
|
|
51 |
|
|
InputFile->read(subData, sizeof(subData)); |
52 |
|
|
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, length); |
53 |
|
|
readCRC = (((UINT16)(subData[dataLength - 2]<<8))&0xFF00) + (((UINT16)subData[dataLength - 1])&0x00FF); |
54 |
|
|
|
55 |
|
|
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for CalibTrailer Packet "); |
56 |
kusanagi |
6.1 |
calibTrailer->calibTrailerData = new TArrayC(length, subData); |
57 |
kusanagi |
1.1 |
} |
58 |
|
|
|