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