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 1.3 2004/09/21 20:24:53 kusanagi Exp $ |
* $Id: AnticounterReader.cpp,v 2.0 2004/09/21 20:51:22 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the AnticounterReader class. |
* Implementation of the AnticounterReader class. |
11 |
#include "AnticounterReader.h" |
#include "AnticounterReader.h" |
12 |
|
|
13 |
extern "C" { |
extern "C" { |
14 |
#include "../forroutines/anticounter/ACphysics.h" |
#include "../forroutines/anticounter/AC.h" |
15 |
extern int ACphysics(int length,unsigned short* datapointer,struct datastruct* physicspointer); |
extern int ACphysics(int length, unsigned char* physicspointer, struct physicsstruct* physicspointer); |
|
//Struct per il passaggio di dati da e verso la chiamata fortran |
|
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 1.3 2004/09/21 20:24:53 kusanagi Exp $"; |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.0 2004/09/21 20:51:22 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 |
datastruct output; |
physicsstruct output; |
65 |
|
|
66 |
//Call to the routine that unpack anitocounter events |
//Call to the routine that unpack anitocounter events |
67 |
ERROR = ACphysics(length, (unsigned short*) data, &output); |
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) { |