1 |
|
2 |
// Implementation of the CalibCalPulse1Reader 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 |
|
19 |
#include "ReaderAlgorithms.h" |
20 |
|
21 |
using namespace pamela::techmodel; |
22 |
|
23 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse1Reader")); |
24 |
|
25 |
/** |
26 |
* Constructor. |
27 |
*/ |
28 |
CalibCalPulse1Reader::CalibCalPulse1Reader(void): |
29 |
TechmodelAlgorithm(PacketType::CalibCalPulse1, "TechmodelCalibCalPulse1Reader") { |
30 |
logger->debug(_T("Constructor")); |
31 |
calibCalPulse1 = new CalibCalPulse1Event(); |
32 |
} |
33 |
|
34 |
/** |
35 |
* Get a string with the version info of the algorithm. |
36 |
*/ |
37 |
std::string CalibCalPulse1Reader::GetVersionInfo(void) const { |
38 |
return |
39 |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/CalibCalPulse1Reader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n"; |
40 |
} |
41 |
|
42 |
/** |
43 |
* Initialize the algorithm with a special run. This will initialize the |
44 |
* event reader routines for all packet types. |
45 |
*/ |
46 |
void CalibCalPulse1Reader::Init(PamelaRun *run) { |
47 |
logger->debug(_T("Initialize")); |
48 |
SetInputStream(run); |
49 |
run->WriteSubPacket(this, &calibCalPulse1, calibCalPulse1->Class()); |
50 |
} |
51 |
|
52 |
/** |
53 |
* Unpack the CalibCalPulse1 event from an input file. |
54 |
*/ |
55 |
void CalibCalPulse1Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
56 |
std::stringstream oss; |
57 |
char packetData[dataLength]; |
58 |
int ERROR; |
59 |
memset(packetData, 0, dataLength*sizeof(char)); |
60 |
InputFile->read(packetData, sizeof(packetData)); |
61 |
|
62 |
calpulse_(packetData, &dataLength, &ERROR); |
63 |
|
64 |
calibCalPulse1->unpackError = ERROR; |
65 |
oss.str(""); |
66 |
if (ERROR != 0) { |
67 |
char *errmsg; |
68 |
switch (ERROR){ |
69 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
70 |
} |
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 |
calibCalPulse1->iev = calpul_.iev; |
77 |
memcpy(calibCalPulse1->pstwerr, calpul_.pstwerr, sizeof(calibCalPulse1->pstwerr)); |
78 |
memcpy(calibCalPulse1->pperror, calpul_.pperror, sizeof(calibCalPulse1->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 |
calibCalPulse1->calpuls[i][j][z] = tempCalpuls[z][j][i]; |
86 |
} |
87 |
} |
88 |
} |
89 |
//----------------------------------------------------------------------------------------- |
90 |
//} |
91 |
} |
92 |
|