1 |
kusanagi |
1.1 |
/** @file |
2 |
|
|
* $Source: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v $ |
3 |
kusanagi |
2.1 |
* $Id: AnticounterReader.cpp,v 2.0 2004/09/21 20:51:22 kusanagi Exp $ |
4 |
kusanagi |
1.1 |
* $Author: kusanagi $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the AnticounterReader class. |
7 |
|
|
*/ |
8 |
|
|
|
9 |
|
|
#include <string> |
10 |
kusanagi |
1.3 |
#include <log4cxx/logger.h> |
11 |
kusanagi |
1.1 |
#include "AnticounterReader.h" |
12 |
|
|
|
13 |
|
|
extern "C" { |
14 |
kusanagi |
2.1 |
#include "../forroutines/anticounter/AC.h" |
15 |
|
|
extern int ACphysics(int length, unsigned char* physicspointer, struct physicsstruct* physicspointer); |
16 |
kusanagi |
1.1 |
} |
17 |
|
|
|
18 |
|
|
using namespace pamela; |
19 |
|
|
using namespace pamela::anticounter; |
20 |
|
|
|
21 |
kusanagi |
1.3 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.anticounter.AnticounterReader")); |
22 |
kusanagi |
1.1 |
|
23 |
|
|
/** |
24 |
|
|
* Constructor. |
25 |
|
|
*/ |
26 |
|
|
AnticounterReader::AnticounterReader(void): |
27 |
|
|
TechmodelAlgorithm(PacketType::Physics, "TechmodelAnticounterReader") { |
28 |
kusanagi |
1.3 |
logger->debug(_T("Constructor")); |
29 |
kusanagi |
1.1 |
anticounter = new AnticounterEvent(); |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
/** |
33 |
|
|
* Get a string with the version info of the algorithm. |
34 |
|
|
*/ |
35 |
|
|
std::string AnticounterReader::GetVersionInfo(void) const { |
36 |
|
|
return |
37 |
kusanagi |
2.1 |
"$Header: /home/cvsmanager/yoda/techmodel/physics/AnticounterReader.cpp,v 2.0 2004/09/21 20:51:22 kusanagi Exp $"; |
38 |
kusanagi |
1.1 |
} |
39 |
|
|
|
40 |
|
|
/** |
41 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
42 |
|
|
* event reader routines for all packet types. |
43 |
|
|
*/ |
44 |
|
|
void AnticounterReader::Init(PamelaRun *run) { |
45 |
kusanagi |
1.3 |
logger->debug(_T("Initialize")); |
46 |
kusanagi |
1.1 |
SetInputStream(run); |
47 |
|
|
run->WriteSubPacket(this, &anticounter, anticounter->Class()); |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
/** |
51 |
|
|
* Unpack the anticounter event from an input file. |
52 |
|
|
*/ |
53 |
|
|
void AnticounterReader::RunEvent(int EventNumber) { |
54 |
|
|
|
55 |
|
|
} |
56 |
|
|
|
57 |
|
|
/** |
58 |
|
|
* Unpack the Anticounter data event from the physical packet. |
59 |
|
|
*/ |
60 |
|
|
void AnticounterReader::RunEvent(int EventNumber, const char subData[], long int length) { |
61 |
kusanagi |
1.3 |
char *data = new char[length]; |
62 |
kusanagi |
1.1 |
memcpy(data, subData, length); |
63 |
|
|
int ERROR; |
64 |
kusanagi |
2.1 |
physicsstruct output; |
65 |
kusanagi |
1.1 |
|
66 |
|
|
//Call to the routine that unpack anitocounter events |
67 |
kusanagi |
2.1 |
ERROR = ACphysics(length, (unsigned char*) data, &output); |
68 |
kusanagi |
1.1 |
|
69 |
kusanagi |
1.2 |
//TO BE activated as soon i will know what codes means "error" |
70 |
|
|
/*if (ERROR != 0) { |
71 |
|
|
char *errmsg; |
72 |
|
|
switch (ERROR){ |
73 |
|
|
case 1: errmsg = "---------------------"; |
74 |
|
|
} |
75 |
|
|
} else {*/ |
76 |
|
|
memcpy(anticounter->header, output.header, sizeof(anticounter->header)); |
77 |
|
|
anticounter->status = output.status; |
78 |
|
|
anticounter->hitmap = output.hitmap; |
79 |
|
|
memcpy(anticounter->regist, output.regist, sizeof(anticounter->regist)); |
80 |
|
|
memcpy(anticounter->shift, output.shift, sizeof(anticounter->shift)); |
81 |
|
|
memcpy(anticounter->counters, output.counters, sizeof(anticounter->counters)); |
82 |
|
|
memcpy(anticounter->coinc, output.coinc, sizeof(anticounter->coinc)); |
83 |
|
|
anticounter->trigg = output.trigg; |
84 |
|
|
memcpy(anticounter->clock, output.clock, sizeof(anticounter->clock)); |
85 |
|
|
memcpy(anticounter->temp, output.temp, sizeof(anticounter->temp)); |
86 |
|
|
memcpy(anticounter->DAC, output.DAC, sizeof(anticounter->DAC)); |
87 |
|
|
anticounter->CRC = output.CRC; |
88 |
|
|
//} |
89 |
kusanagi |
1.3 |
delete[] data; |
90 |
kusanagi |
1.1 |
} |