|
/** @file |
|
|
* $Source: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v $ |
|
|
* $Id: CalibCalReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ |
|
|
* $Author: kusanagi $ |
|
|
* |
|
|
* Implementation of the LogReader class. |
|
|
* ToBeDone: |
|
|
* Control the CRC for the entire data Packet not just for single records |
|
|
*/ |
|
|
|
|
|
//#define UINT unsigned int |
|
1 |
#define BYTE unsigned char |
#define BYTE unsigned char |
2 |
#include <string> |
#include <string> |
3 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
4 |
#include <fstream> |
#include <fstream> |
5 |
#include "stdio.h" |
#include "stdio.h" |
6 |
/*extern "C" { |
extern "C" { |
7 |
#include "CRC.h" |
#include "CRC.h" |
8 |
|
//Struct per il passaggio di dati da e verso la chiamata fortran |
9 |
|
extern struct { |
10 |
|
int iev; |
11 |
|
int cstwerr[4]; |
12 |
|
float cperror[4]; |
13 |
|
float calped[4][11][96]; |
14 |
|
float calgood[4][11][96]; |
15 |
|
float calthr[4][11][6]; |
16 |
|
float calrms[4][11][96]; |
17 |
|
float calbase[4][11][6]; |
18 |
|
float calvar[4][11][6]; |
19 |
|
float calpuls[4][11][96]; |
20 |
|
} calib_; |
21 |
//external declaration of the Fortran function |
//external declaration of the Fortran function |
22 |
void calpedestal_(short[], int*, float[96][11][4], float[][11][4], |
void calpedestal_(char*, long int*, int*); |
23 |
float[][11][4], float[][11][4], float[][11][4]); |
} |
|
}*/ |
|
24 |
|
|
25 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
26 |
#include "event/CalibCalPedEvent.h" |
#include "event/CalibCalPedEvent.h" |
28 |
using namespace pamela; |
using namespace pamela; |
29 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
30 |
|
|
31 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibCalPedReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPedReader")); |
32 |
|
|
33 |
/** |
/** |
34 |
* Constructor. |
* Constructor. |
35 |
*/ |
*/ |
36 |
CalibCalPedReader::CalibCalPedReader(void): |
CalibCalPedReader::CalibCalPedReader(void): |
37 |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") { |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") { |
38 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
39 |
<< "Constructor " |
calibCalPed = new CalibCalPedEvent(); |
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
|
CalibCalPed = new CalibCalPedEvent(); |
|
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
44 |
*/ |
*/ |
45 |
std::string CalibCalPedReader::GetVersionInfo(void) const { |
std::string CalibCalPedReader::GetVersionInfo(void) const { |
46 |
return |
return |
47 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 2.2 2004/12/03 22:08:00 kusanagi Exp $\n"; |
48 |
} |
} |
49 |
|
|
50 |
/** |
/** |
52 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
53 |
*/ |
*/ |
54 |
void CalibCalPedReader::Init(PamelaRun *run) { |
void CalibCalPedReader::Init(PamelaRun *run) { |
55 |
|
logger->debug(_T("Initialize")); |
56 |
SetInputStream(run); |
SetInputStream(run); |
57 |
run->WriteSubPacket(this, &CalibCal, CalibCal->Class()); |
run->WriteSubPacket(this, &calibCalPed, calibCalPed->Class()); |
58 |
} |
} |
59 |
|
|
60 |
/** |
/** |
61 |
* Unpack the CalibCalPed event from an input file. |
* Unpack the CalibCalPed event from an input file. |
62 |
*/ |
*/ |
63 |
void CalibCalPedReader::RunEvent(int EventNumber, long int length) { |
void CalibCalPedReader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
64 |
|
stringstream oss; |
65 |
char *subData; |
int ERROR; |
66 |
long int dataLength; |
char packetData[dataLength]; |
67 |
int ERROR; |
InputFile->read(packetData, sizeof(packetData)); |
68 |
|
|
69 |
//the 2 bytes subtracted belong to the final event CRC bytes |
calpedestal_((char*)packetData, &dataLength, &ERROR); |
70 |
dataLength = length - (long int)2; |
if (ERROR != 0) { |
71 |
|
char *errmsg; |
72 |
subData = new char[dataLength]; |
switch (ERROR){ |
73 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
74 |
|
} |
75 |
//Skip the last two crc bytes already checked in UnpackPscu |
oss.str(""); |
76 |
//This part have to be refactored!!!! too bad...... |
oss << "Fortran77 function calpedestal error code = " << ERROR |
77 |
InputFile->seekg((long int)2, std::ios::cur); |
<< "\n" <<errmsg; |
78 |
|
logger->warn(oss.str().c_str()); |
79 |
//Chiamata alla funzione fortran per la lettura dei piedistalli |
} else { |
80 |
//calpedestal_((short*)subData, &ERROR, CalibCal->cal_ped, CalibCal->cal_good, CalibCal->cal_thr, CalibCal->cal_base, CalibCal->cal_var); |
//Store the unpacked data |
81 |
cat << log4cpp::Priority::ERROR |
calibCalPed->iev = calib_.iev; |
82 |
<< "Fortran77 function calpedestal error code = " << ERROR |
memcpy(calibCalPed->cstwerr, calib_.cstwerr, sizeof(calibCalPed->cstwerr)); |
83 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
memcpy(calibCalPed->cperror, calib_.cperror, sizeof(calibCalPed->cperror)); |
84 |
free(subData); |
//--------have to invert array because of FORTRAN <-> C different management of the indexes |
85 |
} |
float tempCalped[96][11][4]; |
86 |
|
float tempCalgood[96][11][4]; |
87 |
|
float tempCalthr[6][11][4]; |
88 |
|
float tempCalrms[96][11][4]; |
89 |
|
float tempCalbase[6][11][4]; |
90 |
|
float tempCalvar[6][11][4]; |
91 |
|
float tempCalpuls[96][11][4]; |
92 |
|
|
93 |
|
memcpy(tempCalped, calib_.calped, sizeof(tempCalped)); |
94 |
|
memcpy(tempCalgood, calib_.calgood, sizeof(tempCalgood)); |
95 |
|
memcpy(tempCalthr, calib_.calthr, sizeof(tempCalthr)); |
96 |
|
memcpy(tempCalrms, calib_.calrms, sizeof(tempCalrms)); |
97 |
|
memcpy(tempCalbase, calib_.calbase, sizeof(tempCalbase)); |
98 |
|
memcpy(tempCalvar, calib_.calvar, sizeof(tempCalvar)); |
99 |
|
memcpy(tempCalpuls, calib_.calpuls, sizeof(tempCalpuls)); |
100 |
|
|
101 |
|
for (int i = 0; i < 4; i++){ |
102 |
|
for (int j = 0; j <11; j++){ |
103 |
|
for (int z = 0; z < 96; z++){ |
104 |
|
calibCalPed->calped[i][j][z] = tempCalped[z][j][i]; |
105 |
|
calibCalPed->calgood[i][j][z] = tempCalgood[z][j][i]; |
106 |
|
calibCalPed->calrms[i][j][z] = tempCalrms[z][j][i]; |
107 |
|
calibCalPed->calpuls[i][j][z] = tempCalpuls[z][j][i]; |
108 |
|
} |
109 |
|
} |
110 |
|
} |
111 |
|
|
112 |
|
for (int i = 0; i < 4; i++){ |
113 |
|
for (int j = 0; j <11; j++){ |
114 |
|
for (int z = 0; z < 6; z++){ |
115 |
|
calibCalPed->calthr[i][j][z] = tempCalthr[z][j][i]; |
116 |
|
calibCalPed->calbase[i][j][z] = tempCalbase[z][j][i]; |
117 |
|
calibCalPed->calvar[i][j][z] = tempCalvar[z][j][i]; |
118 |
|
} |
119 |
|
} |
120 |
|
} |
121 |
|
//----------------------------------------------------------------------------------------- |
122 |
|
} |
123 |
|
} |
124 |
|
|
125 |
|
|