1 |
|
2 |
#define BYTE unsigned char |
3 |
#include <string> |
4 |
#include <log4cxx/logger.h> |
5 |
#include <fstream> |
6 |
#include "stdio.h" |
7 |
extern "C" { |
8 |
#include "CRC.h" |
9 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
10 |
extern struct { |
11 |
int IEV2; |
12 |
int calped[4][11][96]; |
13 |
int calgood[4][11][96]; |
14 |
int calthr[4][11][6]; |
15 |
int calrms[4][11][96]; |
16 |
int calbase[4][11][6]; |
17 |
int calvar[4][11][96]; |
18 |
int calpuls[4][11][96]; |
19 |
} calib_; |
20 |
//external declaration of the Fortran function |
21 |
void calpedestal_(short[], long int*, int*); |
22 |
} |
23 |
|
24 |
#include "ReaderAlgorithms.h" |
25 |
|
26 |
#include "event/CalibCalPedEvent.h" |
27 |
|
28 |
using namespace pamela; |
29 |
using namespace pamela::techmodel; |
30 |
|
31 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPedReader")); |
32 |
|
33 |
/** |
34 |
* Constructor. |
35 |
*/ |
36 |
CalibCalPedReader::CalibCalPedReader(void): |
37 |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") { |
38 |
logger->debug(_T("Constructor")); |
39 |
calibCalPed = new CalibCalPedEvent(); |
40 |
} |
41 |
|
42 |
/** |
43 |
* Get a string with the version info of the algorithm. |
44 |
*/ |
45 |
std::string CalibCalPedReader::GetVersionInfo(void) const { |
46 |
return |
47 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n"; |
48 |
} |
49 |
|
50 |
/** |
51 |
* Initialize the algorithm with a special run. This will initialize the |
52 |
* event reader routines for all packet types. |
53 |
*/ |
54 |
void CalibCalPedReader::Init(PamelaRun *run) { |
55 |
logger->debug(_T("Initialize")); |
56 |
SetInputStream(run); |
57 |
run->WriteSubPacket(this, &calibCalPed, calibCalPed->Class()); |
58 |
} |
59 |
|
60 |
/** |
61 |
* Unpack the CalibCalPed event from an input file. |
62 |
*/ |
63 |
void CalibCalPedReader::RunEvent(int EventNumber, long int length) { |
64 |
stringstream oss; |
65 |
char *packetData; |
66 |
char CRCevent[2]; |
67 |
UINT16 calculatedCRC = 0; //calculated CRC |
68 |
UINT16 readCRC = 0; //read CRC |
69 |
long int dataLength; |
70 |
int ERROR; |
71 |
|
72 |
dataLength = length - 2; |
73 |
packetData = new char[dataLength]; |
74 |
InputFile->read(packetData, sizeof(packetData)); |
75 |
InputFile->read(CRCevent, sizeof(CRCevent)); |
76 |
|
77 |
calculatedCRC = CM_Compute_CRC16(0, (BYTE*)packetData, dataLength); |
78 |
readCRC = ((UINT16)(CRCevent[0]<<8)&0xFF00) + ((UINT16)(CRCevent[1])&0x00FF); |
79 |
|
80 |
if (calculatedCRC == readCRC) { |
81 |
calpedestal_((short*)packetData, &dataLength, &ERROR); |
82 |
if (ERROR != 0) { |
83 |
char *errmsg; |
84 |
switch (ERROR){ |
85 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
86 |
} |
87 |
oss.flush(); |
88 |
oss << "Fortran77 function calpulse error code = " << ERROR |
89 |
<< errmsg; |
90 |
logger->warn(oss.str().c_str()); |
91 |
} else { |
92 |
//Store the unpacked data |
93 |
calibCalPed->IEV2 = calib_.IEV2; |
94 |
//--------have to invert array because of FORTRAN <-> C different management of the indexes |
95 |
int tempCalped[96][11][4]; |
96 |
int tempCalgood[96][11][4]; |
97 |
int tempCalthr[6][11][4]; |
98 |
int tempCalrms[96][11][4]; |
99 |
int tempCalbase[6][11][4]; |
100 |
int tempCalvar[6][11][4]; |
101 |
int tempCalpuls[96][11][4]; |
102 |
|
103 |
memcpy(tempCalped, calib_.calped, sizeof(tempCalped)); |
104 |
memcpy(tempCalgood, calib_.calgood, sizeof(tempCalgood)); |
105 |
memcpy(tempCalthr, calib_.calthr, sizeof(tempCalthr)); |
106 |
memcpy(tempCalrms, calib_.calrms, sizeof(tempCalrms)); |
107 |
memcpy(tempCalbase, calib_.calbase, sizeof(tempCalbase)); |
108 |
memcpy(tempCalvar, calib_.calvar, sizeof(tempCalvar)); |
109 |
memcpy(tempCalpuls, calib_.calpuls, sizeof(tempCalpuls)); |
110 |
|
111 |
for (int i = 0; i < 4; i++){ |
112 |
for (int j = 0; j <11; j++){ |
113 |
for (int z = 0; z < 96; z++){ |
114 |
calibCalPed->calped[i][j][z] = tempCalped[z][j][i]; |
115 |
calibCalPed->calgood[i][j][z] = tempCalgood[z][j][i]; |
116 |
calibCalPed->calrms[i][j][z] = tempCalrms[z][j][i]; |
117 |
calibCalPed->calpuls[i][j][z] = tempCalpuls[z][j][i]; |
118 |
} |
119 |
} |
120 |
} |
121 |
|
122 |
for (int i = 0; i < 4; i++){ |
123 |
for (int j = 0; j <11; j++){ |
124 |
for (int z = 0; z < 6; z++){ |
125 |
calibCalPed->calthr[i][j][z] = tempCalthr[z][j][i]; |
126 |
calibCalPed->calbase[i][j][z] = tempCalbase[z][j][i]; |
127 |
calibCalPed->calvar[i][j][z] = tempCalvar[z][j][i]; |
128 |
} |
129 |
} |
130 |
} |
131 |
//----------------------------------------------------------------------------------------- |
132 |
} |
133 |
} else { |
134 |
logger->warn(_T("The test of calculated CRC with one wrote on file FAILED!!")); |
135 |
} |
136 |
delete [] packetData; |
137 |
} |
138 |
|
139 |
|