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.1 2004/10/17 12:28:46 kusanagi Exp $ |
* $Id: AnticounterReader.cpp,v 2.2 2004/12/03 22:08:12 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the AnticounterReader class. |
* Implementation of the AnticounterReader class. |
12 |
|
|
13 |
extern "C" { |
extern "C" { |
14 |
#include "../forroutines/anticounter/AC.h" |
#include "../forroutines/anticounter/AC.h" |
15 |
extern int ACphysics(int length, unsigned char* physicspointer, struct physicsstruct* physicspointer); |
extern int ACphysics(int, unsigned char[] , physicsstruct*); |
16 |
} |
} |
17 |
|
|
18 |
using namespace pamela; |
using namespace pamela; |
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.1 2004/10/17 12:28:46 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.2 2004/12/03 22:08:12 kusanagi Exp $"; |
38 |
} |
} |
39 |
|
|
40 |
/** |
/** |
61 |
char *data = new char[length]; |
char *data = new char[length]; |
62 |
memcpy(data, subData, length); |
memcpy(data, subData, length); |
63 |
int ERROR; |
int ERROR; |
64 |
struct physicsstruct output[2]; |
physicsstruct output = {0}; |
65 |
|
|
66 |
//Call to the routine that unpack anitocounter events |
//Call to the routine that unpack anitocounter events |
67 |
//ERROR = ACphysics(length, (unsigned char*) data, &output); |
//anticounter->ERROR = ACphysics(length, (unsigned char*) data, &output); |
|
anticounter->ERROR = ACphysics(length, (unsigned char*) data, &(*output)); |
|
68 |
|
|
69 |
//TO BE activated as soon i will know what codes means "error" |
//TO BE activated as soon i will know what codes means "error" |
70 |
/*if (ERROR != 0) { |
/*if (ERROR != 0) { |
74 |
} |
} |
75 |
} else {*/ |
} else {*/ |
76 |
|
|
77 |
for (int i = 0; i<2; i++){ |
/* |
78 |
memcpy(anticounter->header, output[i].header, sizeof(output[i].header)); |
memcpy(anticounter->header, output.header, sizeof(anticounter->header)); |
79 |
anticounter->status[i] = output[i].status; |
anticounter->status = output.status; |
80 |
anticounter->hitmap[i] = output[i].hitmap; |
anticounter->hitmap = output.hitmap; |
81 |
memcpy(anticounter->regist, output[i].regist, sizeof(output[i].regist)); |
memcpy(anticounter->regist, output.regist, sizeof(output.regist)); |
82 |
memcpy(anticounter->shift, output[i].shift, sizeof(output[i].shift)); |
memcpy(anticounter->shift, output.shift, sizeof(output.shift)); |
83 |
memcpy(anticounter->counters, output[i].counters, sizeof(output[i].counters)); |
memcpy(anticounter->counters, output.counters, sizeof(output.counters)); |
84 |
memcpy(anticounter->coinc, output[i].coinc, sizeof(output[i].coinc)); |
memcpy(anticounter->coinc, output.coinc, sizeof(output.coinc)); |
85 |
anticounter->trigg[i] = output[i].trigg; |
anticounter->trigg = output.trigg; |
86 |
memcpy(anticounter->clock, output[i].clock, sizeof(output[i].clock)); |
memcpy(anticounter->clock, output.clock, sizeof(output.clock)); |
87 |
memcpy(anticounter->temp, output[i].temp, sizeof(output[i].temp)); |
memcpy(anticounter->temp, output.temp, sizeof(output.temp)); |
88 |
memcpy(anticounter->DAC, output[i].DAC, sizeof(output[i].DAC)); |
memcpy(anticounter->DAC, output.DAC, sizeof(output.DAC)); |
89 |
anticounter->CRC[i] = output[i].CRC; |
anticounter->CRC = output.CRC; |
90 |
} |
anticounter->ERROR = ERROR; |
91 |
|
*/ |
92 |
|
|
93 |
//} |
//} |
94 |
delete[] data; |
//delete[] data; |
95 |
} |
} |