1 |
|
2 |
// Implementation of the CalibCalPulse2Reader class. |
3 |
|
4 |
|
5 |
extern "C" { |
6 |
#include "CRC.h" |
7 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
8 |
extern struct { |
9 |
int iev; |
10 |
int pstwerr[4]; |
11 |
float pperror[4]; |
12 |
float calpuls[4][11][96]; |
13 |
} calpul_; |
14 |
|
15 |
//external declaration of the Fortran function |
16 |
void calpulse_(char*, long int*, int*); |
17 |
} |
18 |
#include "ReaderAlgorithms.h" |
19 |
|
20 |
using namespace pamela::techmodel; |
21 |
|
22 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse2Reader")); |
23 |
|
24 |
/** |
25 |
* Constructor. |
26 |
*/ |
27 |
CalibCalPulse2Reader::CalibCalPulse2Reader(void): |
28 |
TechmodelAlgorithm(PacketType::CalibCalPulse2, "TechmodelCalibCalPulse2Reader") { |
29 |
logger->debug(_T("Constructor")); |
30 |
calibCalPulse2 = new CalibCalPulse2Event(); |
31 |
} |
32 |
|
33 |
/** |
34 |
* Get a string with the version info of the algorithm. |
35 |
*/ |
36 |
std::string CalibCalPulse2Reader::GetVersionInfo(void) const { |
37 |
return |
38 |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/CalibCalPulse2Reader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n"; |
39 |
} |
40 |
|
41 |
/** |
42 |
* Initialize the algorithm with a special run. This will initialize the |
43 |
* event reader routines for all packet types. |
44 |
*/ |
45 |
void CalibCalPulse2Reader::Init(PamelaRun *run) { |
46 |
logger->debug(_T("Initialize")); |
47 |
SetInputStream(run); |
48 |
run->WriteSubPacket(this, &calibCalPulse2, calibCalPulse2->Class()); |
49 |
} |
50 |
|
51 |
/** |
52 |
* Unpack the CalibCalPulse2 event from an input file. |
53 |
*/ |
54 |
void CalibCalPulse2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
55 |
std::stringstream oss; |
56 |
char packetData[dataLength]; |
57 |
int ERROR; |
58 |
memset(packetData, 0, dataLength*sizeof(char)); |
59 |
InputFile->read(packetData, sizeof(packetData)); |
60 |
|
61 |
calpulse_(packetData, &dataLength, &ERROR); |
62 |
|
63 |
calibCalPulse2->unpackError = ERROR; |
64 |
|
65 |
if (ERROR != 0) { |
66 |
char *errmsg; |
67 |
switch (ERROR){ |
68 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
69 |
} |
70 |
oss.str(""); |
71 |
oss << "Fortran77 function calpulse error code = " << ERROR |
72 |
<< " " << errmsg; |
73 |
logger->warn(oss.str().c_str()); |
74 |
} //else { |
75 |
//Store the unpacked data |
76 |
calibCalPulse2->iev = calpul_.iev; |
77 |
memcpy(calibCalPulse2->pstwerr, calpul_.pstwerr, sizeof(calibCalPulse2->pstwerr)); |
78 |
memcpy(calibCalPulse2->pperror, calpul_.pperror, sizeof(calibCalPulse2->pperror)); |
79 |
//--------have to invert array because of FORTRAN <-> C different management of the indexes |
80 |
float tempCalpuls[96][11][4]; |
81 |
memcpy(tempCalpuls, calpul_.calpuls, sizeof(tempCalpuls)); |
82 |
for (int i = 0; i < 4; i++){ |
83 |
for (int j = 0; j <11; j++){ |
84 |
for (int z = 0; z < 96; z++){ |
85 |
calibCalPulse2->calpuls[i][j][z] = tempCalpuls[z][j][i]; |
86 |
} |
87 |
} |
88 |
} |
89 |
//----------------------------------------------------------------------------------------- |
90 |
//} |
91 |
} |
92 |
|