| 1 |
/** @file |
/** @file |
| 2 |
* $Source: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v $ |
| 3 |
* $Id: CalibAcReader.cpp,v 2.2 2004/12/03 22:08:00 kusanagi Exp $ |
* $Id: Calib2_Ac2Reader.cpp,v 2.3 2004/12/21 16:50:45 kusanagi Exp $ |
| 4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 5 |
* |
* |
| 6 |
* Implementation of the Calib2_Ac2Reader class. |
* Implementation of the Calib2_Ac2Reader 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 Calib2_Ac2Reader::GetVersionInfo(void) const { |
std::string Calib2_Ac2Reader::GetVersionInfo(void) const { |
| 39 |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 2.2 2004/12/03 22:08:00 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 2.3 2004/12/21 16:50:45 kusanagi Exp $\n"; |
| 40 |
} |
} |
| 41 |
|
|
| 42 |
/** |
/** |
| 53 |
* Unpack the CalibAc event from an input file. |
* Unpack the CalibAc event from an input file. |
| 54 |
*/ |
*/ |
| 55 |
void Calib2_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
void Calib2_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
| 56 |
char subData[dataLength]; |
char subData[dataLength]; |
| 57 |
struct calibstruct output; |
struct calibstruct *output = {0}; |
|
int ERROR; |
|
| 58 |
|
|
|
/* |
|
| 59 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
| 60 |
|
/* |
| 61 |
calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, output); |
| 62 |
memcpy(calib2_Ac2->header, output.header, sizeof(output.header)); |
memcpy(calib2_Ac2->header, output.header, sizeof(output.header)); |
| 63 |
memcpy(calib2_Ac2->status, output.status, sizeof(output.status)); |
memcpy(calib2_Ac2->status, output.status, sizeof(output.status)); |
| 64 |
memcpy(calib2_Ac2->temp, output.temp, sizeof(output.temp)); |
memcpy(calib2_Ac2->temp, output.temp, sizeof(output.temp)); |
| 73 |
calib2_Ac2->iCRC = output.iCRC; |
calib2_Ac2->iCRC = output.iCRC; |
| 74 |
calib2_Ac2->tail = output.tail; |
calib2_Ac2->tail = output.tail; |
| 75 |
calib2_Ac2->CRC = output.CRC; |
calib2_Ac2->CRC = output.CRC; |
| 76 |
*/ |
*/ |
|
|
|
| 77 |
//delete [] subData; |
//delete [] subData; |
| 78 |
} |
} |