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