1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v $ |
* $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/Calib1_Ac2Reader.cpp,v $ |
3 |
* $Id: Calib1_Ac2Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $ |
* $Id: Calib1_Ac2Reader.cpp,v 6.2 2006/05/30 19:10:02 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the Calib1_Ac2Reader class. |
* Implementation of the Calib1_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 Calib1_Ac2Reader::GetVersionInfo(void) const { |
std::string Calib1_Ac2Reader::GetVersionInfo(void) const { |
39 |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib1_Ac2Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $\n"; |
return "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/Calib1_Ac2Reader.cpp,v 6.2 2006/05/30 19:10:02 kusanagi Exp $\n"; |
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
53 |
* Unpack the Calib1_Ac2Reader event from an input file. |
* Unpack the Calib1_Ac2Reader event from an input file. |
54 |
*/ |
*/ |
55 |
void Calib1_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
void Calib1_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
|
/* |
|
56 |
char *subData = new char[dataLength]; |
char *subData = new char[dataLength]; |
57 |
struct calibstruct *output = {0}; |
struct calibstruct output = {0}; |
58 |
|
memset(subData, 0, dataLength*sizeof(char)); |
59 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
60 |
|
|
61 |
for (int i = 0; i < dataLength; i++){ |
calib1_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output); |
62 |
printf("input2 %i %x \n", i, subData[i]); |
memcpy(calib1_Ac2->header, output.header, sizeof(output.header)); |
63 |
} |
memcpy(calib1_Ac2->status, output.status, sizeof(output.status)); |
64 |
|
memcpy(calib1_Ac2->temp, output.temp, sizeof(output.temp)); |
65 |
calib1_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, output); |
memcpy(calib1_Ac2->DAC1, output.DAC1, sizeof(output.DAC1)); |
66 |
memcpy(calib1_Ac2->header, output->header, sizeof(output->header)); |
memcpy(calib1_Ac2->DAC2, output.DAC2, sizeof(output.DAC2)); |
67 |
memcpy(calib1_Ac2->status, output->status, sizeof(output->status)); |
memcpy(calib1_Ac2->regist, output.regist, sizeof(output.regist)); |
68 |
memcpy(calib1_Ac2->temp, output->temp, sizeof(output->temp)); |
memcpy(calib1_Ac2->time, output.time, sizeof(output.time)); |
69 |
memcpy(calib1_Ac2->DAC1, output->DAC1, sizeof(output->DAC1)); |
calib1_Ac2->n_tr = output.n_tr; |
70 |
memcpy(calib1_Ac2->DAC2, output->DAC2, sizeof(output->DAC2)); |
memcpy(calib1_Ac2->hitmap_tr, output.hitmap_tr, sizeof(output.hitmap_tr)); |
71 |
memcpy(calib1_Ac2->regist, output->regist, sizeof(output->regist)); |
memcpy(calib1_Ac2->curve1, output.curve1, sizeof(output.curve1)); |
72 |
memcpy(calib1_Ac2->time, output->time, sizeof(output->time)); |
memcpy(calib1_Ac2->curve2, output.curve2, sizeof(output.curve2)); |
73 |
calib1_Ac2->n_tr = output->n_tr; |
calib1_Ac2->iCRC = output.iCRC; |
74 |
memcpy(calib1_Ac2->hitmap_tr, output->hitmap_tr, sizeof(output->hitmap_tr)); |
calib1_Ac2->tail = output.tail; |
75 |
memcpy(calib1_Ac2->curve1, output->curve1, sizeof(output->curve1)); |
calib1_Ac2->CRC = output.CRC; |
76 |
memcpy(calib1_Ac2->curve2, output->curve2, sizeof(output->curve2)); |
calib1_Ac2->CRCcheck = output.CRCcheck; |
|
calib1_Ac2->iCRC = output->iCRC; |
|
|
calib1_Ac2->tail = output->tail; |
|
|
calib1_Ac2->CRC = output->CRC; |
|
|
*/ |
|
77 |
|
|
|
//delete [] subData; |
|
78 |
} |
} |
79 |
|
|