1 |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v $ |
3 |
* $Id: CalibCalPedReader.cpp,v 1.2 2004/07/08 12:31:42 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
5 |
* |
6 |
* Implementation of the LogReader class. |
7 |
* ToBeDone: |
8 |
* Control the CRC for the entire data Packet not just for single records |
9 |
*/ |
10 |
|
11 |
//#define UINT unsigned int |
12 |
#define BYTE unsigned char |
13 |
#include <string> |
14 |
#include <log4cpp/Category.hh> |
15 |
#include <fstream> |
16 |
#include "stdio.h" |
17 |
extern "C" { |
18 |
#include "CRC.h" |
19 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
20 |
extern struct { |
21 |
int IEV2; |
22 |
int calped[96][11][4]; |
23 |
int calgood[96][11][4]; |
24 |
int calthr[96][11][4]; |
25 |
int calrms[96][11][4]; |
26 |
int calbase[96][11][4]; |
27 |
int calvar[96][11][4]; |
28 |
int calpuls[96][11][4]; |
29 |
} calib_; |
30 |
|
31 |
//external declaration of the Fortran function |
32 |
void calpedestal_(short[], int, int*); |
33 |
} |
34 |
|
35 |
#include "ReaderAlgorithms.h" |
36 |
#include "event/CalibCalPedEvent.h" |
37 |
|
38 |
using namespace pamela; |
39 |
using namespace pamela::techmodel; |
40 |
|
41 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibCalPedReader"); |
42 |
|
43 |
/** |
44 |
* Constructor. |
45 |
*/ |
46 |
CalibCalPedReader::CalibCalPedReader(void): |
47 |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") { |
48 |
cat << log4cpp::Priority::DEBUG |
49 |
<< "Constructor " |
50 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
51 |
calibCalPed = new CalibCalPedEvent(); |
52 |
} |
53 |
|
54 |
/** |
55 |
* Get a string with the version info of the algorithm. |
56 |
*/ |
57 |
std::string CalibCalPedReader::GetVersionInfo(void) const { |
58 |
return |
59 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 1.2 2004/07/08 12:31:42 kusanagi Exp $\n"; |
60 |
} |
61 |
|
62 |
/** |
63 |
* Initialize the algorithm with a special run. This will initialize the |
64 |
* event reader routines for all packet types. |
65 |
*/ |
66 |
void CalibCalPedReader::Init(PamelaRun *run) { |
67 |
SetInputStream(run); |
68 |
run->WriteSubPacket(this, &calibCalPed, calibCalPed->Class()); |
69 |
} |
70 |
|
71 |
/** |
72 |
* Unpack the CalibCalPed event from an input file. |
73 |
*/ |
74 |
void CalibCalPedReader::RunEvent(int EventNumber, long int length) { |
75 |
|
76 |
char packetData[length-2]; |
77 |
char CRCevent[2]; |
78 |
UINT16 calculatedCRC = 0; //calculated CRC |
79 |
UINT16 readCRC = 0; //read CRC |
80 |
long int dataLength; |
81 |
int ERROR; |
82 |
|
83 |
dataLength = length - 2; |
84 |
InputFile->read(packetData, sizeof(packetData)); |
85 |
InputFile->read(CRCevent, sizeof(CRCevent)); |
86 |
|
87 |
calculatedCRC = CM_Compute_CRC16(0, (BYTE*)packetData, dataLength); |
88 |
readCRC = ((UINT16)(CRCevent[0]<<8)&0xFF00) + ((UINT16)(CRCevent[1])&0x00FF); |
89 |
|
90 |
if (calculatedCRC == readCRC) { |
91 |
calpedestal_((short*)packetData, dataLength, &ERROR); |
92 |
//Store the unpacked data |
93 |
calibCalPed->IEV2 = calib_.IEV2; |
94 |
memcpy(calibCalPed->calped, calib_.calped, sizeof(calibCalPed->calped)); |
95 |
memcpy(calibCalPed->calgood, calib_.calgood, sizeof(calibCalPed->calgood)); |
96 |
memcpy(calibCalPed->calthr, calib_.calthr, sizeof(calibCalPed->calthr)); |
97 |
memcpy(calibCalPed->calrms, calib_.calrms, sizeof(calibCalPed->calrms)); |
98 |
memcpy(calibCalPed->calbase, calib_.calbase, sizeof(calibCalPed->calbase)); |
99 |
memcpy(calibCalPed->calvar, calib_.calvar, sizeof(calibCalPed->calvar)); |
100 |
memcpy(calibCalPed->calpuls, calib_.calpuls, sizeof(calibCalPed->calpuls)); |
101 |
|
102 |
cat << log4cpp::Priority::ERROR |
103 |
<< "Fortran77 function calpedestal error code = " << ERROR |
104 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
105 |
} else { |
106 |
cat << log4cpp::Priority::ERROR |
107 |
<< "The test of calculated CRC with one wrote on file FAILED!!" |
108 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
109 |
} |
110 |
free(packetData); |
111 |
} |
112 |
|
113 |
|