1 |
kusanagi |
1.1 |
/** @file |
2 |
mocchiut |
6.3 |
* $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/ArrDumpReader.cpp,v $ |
3 |
|
|
* $Id: ArrDumpReader.cpp,v 6.2 2006/05/30 19:10:02 kusanagi Exp $ |
4 |
kusanagi |
6.0 |
* $Author: kusanagi $ |
5 |
kusanagi |
1.1 |
* |
6 |
|
|
* Implementation of the ArrDumpReader class. |
7 |
|
|
*/ |
8 |
|
|
|
9 |
|
|
extern "C" { |
10 |
|
|
#include "CRC.h" |
11 |
|
|
} |
12 |
|
|
|
13 |
|
|
#include "ReaderAlgorithms.h" |
14 |
|
|
using namespace pamela::techmodel; |
15 |
|
|
|
16 |
kusanagi |
1.6 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.ArrDumpReader")); |
17 |
kusanagi |
1.1 |
|
18 |
|
|
/** |
19 |
|
|
* Constructor. |
20 |
|
|
*/ |
21 |
|
|
ArrDumpReader::ArrDumpReader(void): |
22 |
|
|
TechmodelAlgorithm(PacketType::ArrDump, "TechmodelArrDump") { |
23 |
kusanagi |
1.6 |
logger->debug(_T("Constructor")); |
24 |
kusanagi |
1.1 |
ArrDump = new ArrDumpEvent(); |
25 |
|
|
} |
26 |
|
|
|
27 |
|
|
/** |
28 |
|
|
* Get a string with the version info of the algorithm. |
29 |
|
|
*/ |
30 |
|
|
std::string ArrDumpReader::GetVersionInfo(void) const { |
31 |
mocchiut |
6.3 |
return "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/ArrDumpReader.cpp,v 6.2 2006/05/30 19:10:02 kusanagi Exp $\n"; |
32 |
kusanagi |
1.1 |
} |
33 |
|
|
|
34 |
|
|
/** |
35 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
36 |
|
|
* event reader routines for all packet types. |
37 |
|
|
*/ |
38 |
|
|
void ArrDumpReader::Init(PamelaRun *run) { |
39 |
kusanagi |
1.6 |
logger->debug(_T("Initialize")); |
40 |
kusanagi |
1.1 |
SetInputStream(run); |
41 |
|
|
run->WriteSubPacket(this, &ArrDump, ArrDump->Class()); |
42 |
|
|
} |
43 |
|
|
|
44 |
|
|
/** |
45 |
|
|
* Unpack the ArrDump event from an input file. |
46 |
|
|
*/ |
47 |
kusanagi |
2.1 |
void ArrDumpReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
48 |
kusanagi |
1.1 |
|
49 |
kusanagi |
2.3 |
char subData[length]; |
50 |
kusanagi |
3.1 |
UINT16 subCRC; //calculated CRC of the data |
51 |
|
|
UINT16 readCRC; //CRC read from the end of the subpacket |
52 |
|
|
long int dataLength = length - 2; //the block of data |
53 |
mocchiut |
6.3 |
memset(subData, 0, length*sizeof(char)); |
54 |
kusanagi |
3.1 |
InputFile->read(subData, sizeof(subData)); |
55 |
|
|
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
56 |
|
|
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
57 |
kusanagi |
1.1 |
|
58 |
kusanagi |
4.5 |
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for ArrDump Packet "); |
59 |
|
|
/*if (subCRC != readCRC) { |
60 |
kusanagi |
3.1 |
logger->error("WRONG CRC FOR ArrDump PACKET. processed anyway for CPU debugging"); |
61 |
kusanagi |
4.5 |
}*/ |
62 |
kusanagi |
2.1 |
|
63 |
|
|
ArrDumpRecord* rec; |
64 |
kusanagi |
2.4 |
ArrDump->PARAMETER_STAMP = (((UINT32)subData[0]<<24)&0xFF000000) + (((UINT32)subData[1]<<16)&0x00FF0000) + (((UINT32)subData[2]<<8)&0x0000FF00) + (((UINT32)subData[3])&0x000000FF); |
65 |
|
|
long int offset = 4; |
66 |
kusanagi |
2.1 |
int i = 0; |
67 |
|
|
ArrDump->Records->Clear(); |
68 |
|
|
TClonesArray &recs = *(ArrDump->Records); |
69 |
|
|
while (offset < dataLength){ |
70 |
|
|
rec = new(recs[i++]) ArrDumpRecord(); //add a new TmtcRecord |
71 |
|
|
rec->Arr_ID = ((UINT8)subData[offset])&0xFF; |
72 |
|
|
rec->Arr_len = (((UINT16)subData[offset+1]<<8)&0xFF00) + ((UINT16)subData[offset+2])&0x00FF; |
73 |
|
|
rec->Data = new TArrayI((int)rec->Arr_len, (int*)(subData+offset+3)); |
74 |
kusanagi |
3.1 |
offset = offset + sizeof(UINT32)*(rec->Arr_len) + 3; |
75 |
kusanagi |
1.1 |
} |
76 |
|
|
} |