1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/CalibAcReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/CalibAcReader.cpp,v $ |
3 |
* $Id: CalibAcReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $ |
* $Id: CalibAcReader.cpp,v 2.1 2004/10/17 12:28:38 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the ArrDumpReader class. |
* Implementation of the ArrDumpReader class. |
36 |
* Get a string with the version info of the algorithm. |
* Get a string with the version info of the algorithm. |
37 |
*/ |
*/ |
38 |
std::string CalibAcReader::GetVersionInfo(void) const { |
std::string CalibAcReader::GetVersionInfo(void) const { |
39 |
return "$Header: /home/cvsmanager/yoda/techmodel/CalibAcReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/CalibAcReader.cpp,v 2.1 2004/10/17 12:28:38 kusanagi Exp $\n"; |
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
52 |
/** |
/** |
53 |
* Unpack the CalibAc event from an input file. |
* Unpack the CalibAc event from an input file. |
54 |
*/ |
*/ |
55 |
void CalibAcReader::RunEvent(int EventNumber, long int length) { |
void CalibAcReader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
56 |
char *subData; |
char subData[dataLength]; |
57 |
char eventCRC[2]; |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
|
UINT16 subCRC; //CRC of the data |
|
|
UINT16 readCRC; //CRC read from the end of the subpacket |
|
|
long int dataLength; |
|
58 |
|
|
59 |
//the 2 bytes subtracted belong to the final event CRC bytes |
struct calibstruct output[2]; |
60 |
dataLength = length - (long int)2; |
int ERROR; |
61 |
|
CalibAc->ERROR = ACcalib(dataLength, (unsigned char*)subData, &(*output)); |
62 |
subData = new char[dataLength]; |
|
63 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
for (int i = 0; i<2; i++){ |
64 |
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
CalibAc->header[i] = output[i].header; |
65 |
|
memcpy(CalibAc->status[i], output[i].status, sizeof(output[i].status)); |
66 |
//took the final CRC to compare it with the previous calculated CRC of the data |
memcpy(CalibAc->temp[i], output[i].temp, sizeof(output[i].temp)); |
67 |
InputFile->read(eventCRC, sizeof(eventCRC)); |
memcpy(CalibAc->DAC1[i], output[i].DAC1, sizeof(output[i].DAC1)); |
68 |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
memcpy(CalibAc->DAC2[i], output[i].DAC2, sizeof(output[i].DAC2)); |
69 |
|
memcpy(CalibAc->regist[i], output[i].regist, sizeof(output[i].regist)); |
70 |
if (subCRC == readCRC){ |
memcpy(CalibAc->time[i], output[i].time, sizeof(output[i].time)); |
71 |
calibstruct output; |
CalibAc->n_tr[i] = output[i].n_tr; |
72 |
int ERROR; |
memcpy(CalibAc->hitmap_tr[i], output[i].hitmap_tr, sizeof(output[i].hitmap_tr)); |
73 |
ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
memcpy(CalibAc->curve1[i], output[i].curve1, sizeof(output[i].curve1)); |
74 |
|
memcpy(CalibAc->curve2[i], output[i].curve2, sizeof(output[i].curve2)); |
75 |
CalibAc->header = output.header; |
CalibAc->iCRC[i] = output[i].iCRC; |
76 |
memcpy(CalibAc->status, output.status, sizeof(CalibAc->status)); |
CalibAc->tail[i] = output[i].tail; |
77 |
memcpy(CalibAc->temp, output.temp, sizeof(CalibAc->temp)); |
CalibAc->CRC[i] = output[i].CRC; |
|
memcpy(CalibAc->DAC1, output.DAC1, sizeof(CalibAc->DAC1)); |
|
|
memcpy(CalibAc->DAC2, output.DAC2, sizeof(CalibAc->DAC2)); |
|
|
memcpy(CalibAc->regist, output.regist, sizeof(CalibAc->regist)); |
|
|
memcpy(CalibAc->time, output.time, sizeof(CalibAc->time)); |
|
|
CalibAc->n_tr = output.n_tr; |
|
|
memcpy(CalibAc->hitmap_tr, output.hitmap_tr, sizeof(CalibAc->hitmap_tr)); |
|
|
memcpy(CalibAc->curve1, output.curve1, sizeof(CalibAc->curve1)); |
|
|
memcpy(CalibAc->curve2, output.curve2, sizeof(CalibAc->curve2)); |
|
|
CalibAc->iCRC = output.iCRC; |
|
|
CalibAc->tail = output.tail; |
|
|
CalibAc->CRC = output.CRC; |
|
|
} else { |
|
|
logger->warn(_T("Wrong CRC on Subpacket in ArrDump Packet ")); |
|
78 |
} |
} |
79 |
|
|
80 |
delete [] subData; |
delete [] subData; |
81 |
} |
} |