| 1 |
/** @file |
/** @file |
| 2 |
* $Source: /repository/PamOffLineSW/techmodel/Calib2_Ac1Reader.cpp,v $ |
* $Source: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/PamOffLineSW/techmodel/Calib2_Ac1Reader.cpp,v $ |
| 3 |
* $Id: Calib2_Ac1Reader.cpp,v 1.5 2008-03-04 18:09:30 messineo Exp $ |
* $Id: Calib2_Ac1Reader.cpp,v 1.2 2009-08-04 13:58:11 mocchiut Exp $ |
| 4 |
* $Author: messineo $ |
* $Author: mocchiut $ |
| 5 |
* |
* |
| 6 |
* Implementation of the Calib2_Ac1Reader class. |
* Implementation of the Calib2_Ac1Reader class. |
| 7 |
*/ |
*/ |
| 12 |
extern "C" { |
extern "C" { |
| 13 |
#include "CRC.h" |
#include "CRC.h" |
| 14 |
#include "forroutines/anticounter/AC.h" |
#include "forroutines/anticounter/AC.h" |
| 15 |
extern int ACcalib(int length, unsigned char* calibpointer, struct calibstruct *calibpointer); |
extern int ACcalib(int length, unsigned char* datapointer, struct calibstruct *calibpointer); |
| 16 |
} |
} |
| 17 |
|
|
| 18 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
| 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 Calib2_Ac1Reader::GetVersionInfo(void) const { |
std::string Calib2_Ac1Reader::GetVersionInfo(void) const { |
| 36 |
return "$Header: /repository/PamOffLineSW/techmodel/Calib2_Ac1Reader.cpp,v 1.5 2008-03-04 18:09:30 messineo Exp $\n"; |
return "$Header: /afs/ba.infn.it/user/pamela/src/CVS/chewbacca/PamOffLineSW/techmodel/Calib2_Ac1Reader.cpp,v 1.2 2009-08-04 13:58:11 mocchiut Exp $\n"; |
| 37 |
} |
} |
| 38 |
|
|
| 39 |
/** |
/** |
| 48 |
* Unpack the CalibAc event |
* Unpack the CalibAc event |
| 49 |
*/ |
*/ |
| 50 |
void Calib2_Ac1Reader::PKT_RunEvent(char* subData, long int dataLength) throw (Exception){ |
void Calib2_Ac1Reader::PKT_RunEvent(char* subData, long int dataLength) throw (Exception){ |
| 51 |
struct calibstruct output = {0}; |
struct calibstruct output;// = {0}; |
| 52 |
calib2_Ac1->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
calib2_Ac1->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
| 53 |
memcpy(calib2_Ac1->header, output.header, sizeof(output.header)); |
memcpy(calib2_Ac1->header, output.header, sizeof(output.header)); |
| 54 |
memcpy(calib2_Ac1->status, output.status, sizeof(output.status)); |
memcpy(calib2_Ac1->status, output.status, sizeof(output.status)); |