1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/TsbTReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/TsbTReader.cpp,v $ |
3 |
* $Id: TsbTReader.cpp,v 2.1 2005/03/03 13:12:18 kusanagi Exp $ |
* $Id: TsbTReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the TsbTReader class. |
* Implementation of the TsbTReader class. |
33 |
* Get a string with the version info of the algorithm. |
* Get a string with the version info of the algorithm. |
34 |
*/ |
*/ |
35 |
std::string TsbTReader::GetVersionInfo(void) const { |
std::string TsbTReader::GetVersionInfo(void) const { |
36 |
return "$Header: /home/cvsmanager/yoda/techmodel/TsbTReader.cpp,v 2.1 2005/03/03 13:12:18 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/TsbTReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $\n"; |
37 |
} |
} |
38 |
|
|
39 |
/** |
/** |
41 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
42 |
*/ |
*/ |
43 |
void TsbTReader::Init(PamelaRun *run) { |
void TsbTReader::Init(PamelaRun *run) { |
44 |
|
logger->debug(_T("Initialize")); |
45 |
SetInputStream(run); |
SetInputStream(run); |
46 |
run->WriteSubPacket(this, &TsbT, TsbT->Class()); |
run->WriteSubPacket(this, &TsbT, TsbT->Class()); |
47 |
} |
} |
52 |
void TsbTReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
void TsbTReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
53 |
|
|
54 |
char subData[length]; |
char subData[length]; |
55 |
UINT16 subCRC; //CRC of the data |
UINT16 subCRC; //calculated CRC of the data |
56 |
UINT16 readCRC; //CRC read from the end of the subpacket |
UINT16 readCRC; //CRC read from the end of the subpacket |
57 |
long int dataLength = length - 2; |
long int dataLength = length - 2; //the block of data |
58 |
int vars; |
|
59 |
|
InputFile->read(subData, sizeof(subData)); |
60 |
InputFile->read(subData, sizeof(unsigned char)*length); |
subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength); |
|
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
|
61 |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF); |
62 |
|
|
63 |
if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for TsbT Packet "); |
//if (subCRC != readCRC) throw WrongCRCException(" Wrong CRC for TsbT Packet "); |
64 |
|
if (subCRC != readCRC) { |
65 |
TsbTRecord* rec; |
logger->error("WRONG CRC FOR TsbT PACKET. Processed anyway for CPU debugging"); |
66 |
|
} |
67 |
|
|
68 |
|
TsbTRecord* rec; |
69 |
TsbT->Records->Clear(); |
TsbT->Records->Clear(); |
70 |
TClonesArray &recs = *(TsbT->Records); |
TClonesArray &recs = *(TsbT->Records); |
71 |
|
|
80 |
} |
} |
81 |
offset = offset + 31; |
offset = offset + 31; |
82 |
} |
} |
83 |
//delete [] subData; |
} |
|
} |
|
84 |
|
|