| 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.4 2005/01/03 14:20:09 kusanagi Exp $ |
* $Id: Calib2_Ac2Reader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $ |
| 4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
| 5 |
* |
* |
| 6 |
* Implementation of the Calib2_Ac2Reader class. |
* Implementation of the Calib2_Ac2Reader class. |
| 7 |
*/ |
*/ |
| 8 |
|
|
|
#include <string> |
|
| 9 |
#include <log4cxx/logger.h> |
#include <log4cxx/logger.h> |
|
#include <fstream> |
|
|
#include "stdio.h" |
|
| 10 |
extern "C" { |
extern "C" { |
| 11 |
#include "CRC.h" |
#include "CRC.h" |
| 12 |
#include "forroutines/anticounter/AC.h" |
#include "forroutines/anticounter/AC.h" |
| 13 |
extern int ACcalib(int length, unsigned char* calibpointer, struct calibstruct* calibpointer); |
extern int ACcalib(int length, unsigned char* calibpointer, struct calibstruct *calibpointer); |
| 14 |
} |
} |
| 15 |
|
|
| 16 |
#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_Ac2Reader::GetVersionInfo(void) const { |
std::string Calib2_Ac2Reader::GetVersionInfo(void) const { |
| 36 |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 2.4 2005/01/03 14:20:09 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $\n"; |
| 37 |
} |
} |
| 38 |
|
|
| 39 |
/** |
/** |
| 50 |
* Unpack the CalibAc event from an input file. |
* Unpack the CalibAc event from an input file. |
| 51 |
*/ |
*/ |
| 52 |
void Calib2_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
void Calib2_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
| 53 |
/* |
|
| 54 |
char subData[dataLength]; |
char *subData = new char[dataLength]; |
| 55 |
|
struct calibstruct output = {0}; |
| 56 |
|
|
| 57 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
| 58 |
|
|
| 59 |
struct calibstruct output; |
calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
| 60 |
|
memcpy(calib2_Ac2->header, output.header, sizeof(output.header)); |
| 61 |
calib1_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
memcpy(calib2_Ac2->status, output.status, sizeof(output.status)); |
| 62 |
calib1_Ac2->ResetDSP = output.ResetDSP; |
memcpy(calib2_Ac2->temp, output.temp, sizeof(output.temp)); |
| 63 |
calib1_Ac2->DSPinit = output.DSPinit; |
memcpy(calib2_Ac2->DAC1, output.DAC1, sizeof(output.DAC1)); |
| 64 |
calib1_Ac2->DSPprog = output.DSPprog; |
memcpy(calib2_Ac2->DAC2, output.DAC2, sizeof(output.DAC2)); |
| 65 |
calib1_Ac2->ModeCalib = output.ModeCalib; |
memcpy(calib2_Ac2->regist, output.regist, sizeof(output.regist)); |
| 66 |
calib1_Ac2->SetDAC = output.SetDAC; |
memcpy(calib2_Ac2->time, output.time, sizeof(output.time)); |
| 67 |
calib1_Ac2->ModePhysics = output.ModePhysics; |
calib2_Ac2->n_tr = output.n_tr; |
| 68 |
*/ |
memcpy(calib2_Ac2->hitmap_tr, output.hitmap_tr, sizeof(output.hitmap_tr)); |
| 69 |
|
memcpy(calib2_Ac2->curve1, output.curve1, sizeof(output.curve1)); |
| 70 |
|
memcpy(calib2_Ac2->curve2, output.curve2, sizeof(output.curve2)); |
| 71 |
|
calib2_Ac2->iCRC = output.iCRC; |
| 72 |
|
calib2_Ac2->tail = output.tail; |
| 73 |
|
calib2_Ac2->CRC = output.CRC; |
| 74 |
|
calib2_Ac2->CRCcheck = output.CRCcheck; |
| 75 |
|
|
| 76 |
//delete [] subData; |
//delete [] subData; |
| 77 |
} |
} |