1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $ |
3 |
* $Id: AnticounterReader.cpp,v 2.4 2004/12/20 14:15:17 kusanagi Exp $ |
* $Id: AnticounterReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the AnticounterReader class. |
* Implementation of the AnticounterReader class. |
34 |
*/ |
*/ |
35 |
std::string AnticounterReader::GetVersionInfo(void) const { |
std::string AnticounterReader::GetVersionInfo(void) const { |
36 |
return |
return |
37 |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.4 2004/12/20 14:15:17 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 3.0 2005/03/04 15:54:11 kusanagi Exp $"; |
38 |
} |
} |
39 |
|
|
40 |
/** |
/** |
58 |
* Unpack the Anticounter data event from the physical packet. |
* Unpack the Anticounter data event from the physical packet. |
59 |
*/ |
*/ |
60 |
void AnticounterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
void AnticounterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
61 |
|
std::stringstream oss; |
62 |
char *data = new char[length]; |
char *data = new char[length]; |
63 |
memcpy(data, subData, length); |
memcpy(data, subData, length); |
|
int ERROR; |
|
64 |
struct physicsstruct output[2] = {0}; |
struct physicsstruct output[2] = {0}; |
65 |
|
|
66 |
|
|
67 |
|
|
68 |
//Call to the routine that unpack anitocounter events |
//Call to the routine that unpack anitocounter events |
69 |
//anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output)); |
//anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output)); |
70 |
anticounter->ERROR = ACphysics(length, (unsigned char*) data, output); |
anticounter->unpackError = ACphysics(length, (unsigned char*) data, output); |
71 |
|
|
72 |
//TO BE activated as soon i will know what codes means "error" |
//if (ERROR != 0) { |
|
/*if (ERROR != 0) { |
|
73 |
char *errmsg; |
char *errmsg; |
74 |
switch (ERROR){ |
switch (anticounter->unpackError){ |
75 |
case 1: errmsg = "---------------------"; |
case 0xFF: errmsg = "data (physics or calibration) from both cards found"; |
76 |
|
break; |
77 |
|
case 0xF0: errmsg = "only data from main card found"; |
78 |
|
break; |
79 |
|
case 0x0F: errmsg = "only data from extra card found"; |
80 |
|
break; |
81 |
|
case 0x00: errmsg = "no data found"; |
82 |
|
break; |
83 |
|
default: errmsg = "ANTICOUNTER ERRROR CODE UNIDENTIFIED"; |
84 |
} |
} |
85 |
} else {*/ |
oss.str(""); |
86 |
|
oss << "Fortran77 function tofunpack: " << errmsg; |
87 |
|
logger->warn(oss.str().c_str()); |
88 |
|
//} |
89 |
|
|
90 |
for(int i = 0; i<2; i++){ |
for(int i = 0; i<2; i++){ |
91 |
memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i])); |
memcpy(anticounter->header[i], output[i].header, sizeof(anticounter->header[i])); |
99 |
memcpy(anticounter->clock[i], output[i].clock, sizeof(output[i].clock)); |
memcpy(anticounter->clock[i], output[i].clock, sizeof(output[i].clock)); |
100 |
memcpy(anticounter->temp[i], output[i].temp, sizeof(output[i].temp)); |
memcpy(anticounter->temp[i], output[i].temp, sizeof(output[i].temp)); |
101 |
memcpy(anticounter->DAC[i], output[i].DAC, sizeof(output[i].DAC)); |
memcpy(anticounter->DAC[i], output[i].DAC, sizeof(output[i].DAC)); |
102 |
anticounter->CRC[i] = output[i].CRC; |
anticounter->CRC[i] = output[i].CRC; |
103 |
|
anticounter->CRCcheck[i] = output[i].CRCcheck; |
104 |
} |
} |
105 |
|
|
106 |
//} |
//} |
107 |
//delete[] data; |
delete [] data; |
108 |
} |
} |