1 |
kusanagi |
1.1 |
/** @file |
2 |
|
|
* $Source: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v $ |
3 |
|
|
* $Id: CalibCalReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 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 |
|
|
//external declaration of the Fortran function |
20 |
|
|
void calpedestal_(short[], int*, float[96][11][4], float[][11][4], |
21 |
|
|
float[][11][4], float[][11][4], float[][11][4]); |
22 |
|
|
}*/ |
23 |
|
|
|
24 |
|
|
#include "ReaderAlgorithms.h" |
25 |
|
|
#include "event/CalibCalPedEvent.h" |
26 |
|
|
|
27 |
|
|
using namespace pamela; |
28 |
|
|
using namespace pamela::techmodel; |
29 |
|
|
|
30 |
|
|
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibCalPedReader"); |
31 |
|
|
|
32 |
|
|
/** |
33 |
|
|
* Constructor. |
34 |
|
|
*/ |
35 |
|
|
CalibCalPedReader::CalibCalPedReader(void): |
36 |
|
|
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") { |
37 |
|
|
cat << log4cpp::Priority::DEBUG |
38 |
|
|
<< "Constructor " |
39 |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
40 |
|
|
CalibCalPed = new CalibCalPedEvent(); |
41 |
|
|
} |
42 |
|
|
|
43 |
|
|
/** |
44 |
|
|
* Get a string with the version info of the algorithm. |
45 |
|
|
*/ |
46 |
|
|
std::string CalibCalPedReader::GetVersionInfo(void) const { |
47 |
|
|
return |
48 |
|
|
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
49 |
|
|
} |
50 |
|
|
|
51 |
|
|
/** |
52 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
53 |
|
|
* event reader routines for all packet types. |
54 |
|
|
*/ |
55 |
|
|
void CalibCalPedReader::Init(PamelaRun *run) { |
56 |
|
|
SetInputStream(run); |
57 |
|
|
run->WriteSubPacket(this, &CalibCal, CalibCal->Class()); |
58 |
|
|
} |
59 |
|
|
|
60 |
|
|
/** |
61 |
|
|
* Unpack the CalibCalPed event from an input file. |
62 |
|
|
*/ |
63 |
|
|
void CalibCalPedReader::RunEvent(int EventNumber, long int length) { |
64 |
|
|
|
65 |
|
|
char *subData; |
66 |
|
|
long int dataLength; |
67 |
|
|
int ERROR; |
68 |
|
|
|
69 |
|
|
//the 2 bytes subtracted belong to the final event CRC bytes |
70 |
|
|
dataLength = length - (long int)2; |
71 |
|
|
|
72 |
|
|
subData = new char[dataLength]; |
73 |
|
|
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
74 |
|
|
|
75 |
|
|
//Skip the last two crc bytes already checked in UnpackPscu |
76 |
|
|
//This part have to be refactored!!!! too bad...... |
77 |
|
|
InputFile->seekg((long int)2, std::ios::cur); |
78 |
|
|
|
79 |
|
|
//Chiamata alla funzione fortran per la lettura dei piedistalli |
80 |
|
|
//calpedestal_((short*)subData, &ERROR, CalibCal->cal_ped, CalibCal->cal_good, CalibCal->cal_thr, CalibCal->cal_base, CalibCal->cal_var); |
81 |
|
|
cat << log4cpp::Priority::ERROR |
82 |
|
|
<< "Fortran77 function calpedestal error code = " << ERROR |
83 |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
84 |
|
|
free(subData); |
85 |
|
|
} |
86 |
|
|
|
87 |
|
|
|