1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac1Reader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac1Reader.cpp,v $ |
3 |
* $Id: CalibAcReader.cpp,v 2.2 2004/12/03 22:08:00 kusanagi Exp $ |
* $Id: Calib1_Ac1Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the Calib1_Ac1Reader class. |
* Implementation of the Calib1_Ac1Reader 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 Calib1_Ac1Reader::GetVersionInfo(void) const { |
std::string Calib1_Ac1Reader::GetVersionInfo(void) const { |
39 |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib1_Ac1Reader.cpp,v 2.2 2004/12/03 22:08:00 kusanagi Exp $\n"; |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib1_Ac1Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $\n"; |
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
53 |
* Unpack the Calib1_Ac1Reader event from an input file. |
* Unpack the Calib1_Ac1Reader event from an input file. |
54 |
*/ |
*/ |
55 |
void Calib1_Ac1Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
void Calib1_Ac1Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
56 |
/*char subData[dataLength]; |
/* |
57 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
char *subData = new char[dataLength]; |
58 |
|
struct calibstruct *output = {0}; |
59 |
struct calibstruct output; |
|
60 |
int ERROR; |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
61 |
|
|
62 |
calib1_Ac1->ResetDSP = output.ResetDSP; |
for (int i = 0; i < dataLength; i++){ |
63 |
calib1_Ac1->DSPinit = output.DSPinit; |
printf("input1 %i %x \n", i, (unsigned char)subData[i]); |
64 |
calib1_Ac1->DSPprog = output.DSPprog; |
} |
65 |
calib1_Ac1->ModeCalib = output.ModeCalib; |
|
66 |
calib1_Ac1->SetDac = output.SetDac; |
calib1_Ac1->ERROR = ACcalib(dataLength, (unsigned char*)subData, output); |
67 |
calib1_Ac1->ModePhysics = output.ModePhysics; |
memcpy(calib1_Ac1->header, output->header, sizeof(output->header)); |
68 |
calib1_Ac1->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
memcpy(calib1_Ac1->status, output->status, sizeof(output->status)); |
69 |
*/ |
memcpy(calib1_Ac1->temp, output->temp, sizeof(output->temp)); |
70 |
|
memcpy(calib1_Ac1->DAC1, output->DAC1, sizeof(output->DAC1)); |
71 |
//delete [] subData; |
memcpy(calib1_Ac1->DAC2, output->DAC2, sizeof(output->DAC2)); |
72 |
|
memcpy(calib1_Ac1->regist, output->regist, sizeof(output->regist)); |
73 |
|
memcpy(calib1_Ac1->time, output->time, sizeof(output->time)); |
74 |
|
calib1_Ac1->n_tr = output->n_tr; |
75 |
|
memcpy(calib1_Ac1->hitmap_tr, output->hitmap_tr, sizeof(output->hitmap_tr)); |
76 |
|
memcpy(calib1_Ac1->curve1, output->curve1, sizeof(output->curve1)); |
77 |
|
memcpy(calib1_Ac1->curve2, output->curve2, sizeof(output->curve2)); |
78 |
|
calib1_Ac1->iCRC = output->iCRC; |
79 |
|
calib1_Ac1->tail = output->tail; |
80 |
|
calib1_Ac1->CRC = output->CRC; |
81 |
|
*/ |
82 |
|
//delete [] subData; |
83 |
} |
} |
84 |
|
|