1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v $ |
3 |
* $Id: Calib2_Ac2Reader.cpp,v 2.1 2004/12/16 17:32:57 kusanagi Exp $ |
* $Id: Calib2_Ac2Reader.cpp,v 2.2 2004/12/20 14:15:13 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.1 2004/12/16 17:32:57 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $\n"; |
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
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[2]; |
struct calibstruct output[2] = {0}; |
58 |
int ERROR; |
int ERROR; |
59 |
|
|
60 |
|
|
61 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
62 |
calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &(*output)); |
calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, output); |
63 |
for(int i = 0; i<2; i++){ |
for(int i = 0; i<2; i++){ |
64 |
memcpy(calib2_Ac2->header[i], output[i].header, sizeof(output[i].header)); |
memcpy(calib2_Ac2->header[i], output[i].header, sizeof(output[i].header)); |
65 |
memcpy(calib2_Ac2->status[i], output[i].status, sizeof(output[i].status)); |
memcpy(calib2_Ac2->status[i], output[i].status, sizeof(output[i].status)); |