1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v $ |
3 |
* $Id: CalibTrk1Reader.cpp,v 1.4 2004/08/19 15:24:46 kusanagi Exp $ |
* $Id: CalibTrk1Reader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the LogReader class. |
* Implementation of the LogReader class. |
8 |
* Control the CRC for the entire data Packet not just for single records |
* Control the CRC for the entire data Packet not just for single records |
9 |
*/ |
*/ |
10 |
|
|
11 |
#define UINT unsigned int |
#include "ReaderAlgorithms.h" |
12 |
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cpp/Category.hh> |
|
13 |
extern "C" { |
extern "C" { |
14 |
#include "CRC.h" |
#include "CRC.h" |
15 |
//The int* return the error code |
extern void trkcalibpkt_(int*, unsigned char[], long int*, int*); //(*) |
|
//The char* is the path to the temporary file |
|
|
extern void trkcalibpkt_(int*, char*); |
|
16 |
|
|
17 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
//Struct per il passaggio di dati da e verso la chiamata fortran |
18 |
extern struct { |
extern struct { |
19 |
int DAQmode[6]; |
int good0; |
20 |
int DSPnumber[6]; |
int DAQmode[6]; |
21 |
int calibnumber[6]; |
int DSPnumber[6]; |
22 |
int ncalib_event[6]; |
int calibnumber[6]; |
23 |
int ped_l1[6]; |
int ncalib_event[6]; |
24 |
int ped_l2[6]; |
int ped_l1[6]; |
25 |
int ped_l3[6]; |
int ped_l2[6]; |
26 |
int sig_l1[6]; |
int ped_l3[6]; |
27 |
int sig_l2[6]; |
int sig_l1[6]; |
28 |
int sig_l3[6]; |
int sig_l2[6]; |
29 |
int nbad_l1[6]; |
int sig_l3[6]; |
30 |
int nbad_l2[6]; |
int nbad_l1[6]; |
31 |
int nbad_l3[6]; |
int nbad_l2[6]; |
32 |
int cal_flag[6]; |
int nbad_l3[6]; |
33 |
int DSPped_par[6][3072]; |
int cal_flag[6]; |
34 |
float DSPsig_par[6][3072]; |
float DSPped_par[3072][6]; |
35 |
float DSPbad_par[6][3072]; |
float DSPsig_par[3072][6]; |
36 |
|
int DSPbad_par[3072][6]; |
37 |
|
int crc_cal[3][6]; |
38 |
|
int crc_hcal[6]; |
39 |
} trkcalib_; |
} trkcalib_; |
|
|
|
40 |
#include <dirent.h> |
#include <dirent.h> |
41 |
} |
} |
42 |
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
|
#include "ReaderAlgorithms.h" |
|
|
#include "event/PamelaRun.h" |
|
|
|
|
|
#include "event/CalibTrk1Event.h" |
|
|
|
|
|
using namespace pamela; |
|
43 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
44 |
|
|
45 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrk1Reader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk1Reader")); |
46 |
|
|
47 |
/** |
/** |
48 |
* Constructor. |
* Constructor. |
49 |
*/ |
*/ |
50 |
CalibTrk1Reader::CalibTrk1Reader(void): |
CalibTrk1Reader::CalibTrk1Reader(void): |
51 |
TechmodelAlgorithm(PacketType::CalibTrk1, "TechmodelCalibTrk1Reader") { |
TechmodelAlgorithm(PacketType::CalibTrk1, "TechmodelCalibTrk1Reader") { |
52 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
53 |
calibTrk1 = new CalibTrk1Event(); |
calibTrk1 = new CalibTrk1Event(); |
54 |
} |
} |
55 |
|
|
58 |
*/ |
*/ |
59 |
std::string CalibTrk1Reader::GetVersionInfo(void) const { |
std::string CalibTrk1Reader::GetVersionInfo(void) const { |
60 |
return |
return |
61 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v 1.4 2004/08/19 15:24:46 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v 6.0 2006/02/07 17:11:09 kusanagi Exp $\n"; |
62 |
} |
} |
63 |
|
|
64 |
/** |
/** |
66 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
67 |
*/ |
*/ |
68 |
void CalibTrk1Reader::Init(PamelaRun *run) { |
void CalibTrk1Reader::Init(PamelaRun *run) { |
69 |
|
logger->debug(_T("Initialize")); |
70 |
SetInputStream(run); |
SetInputStream(run); |
71 |
run->WriteSubPacket(this, &calibTrk1, calibTrk1->Class()); |
run->WriteSubPacket(this, &calibTrk1, calibTrk1->Class()); |
72 |
} |
} |
75 |
* Unpack the CalibTrk event from an input file. |
* Unpack the CalibTrk event from an input file. |
76 |
*/ |
*/ |
77 |
//void CalibTrkReader::RunEvent(int EventNumber, long int length, char *subData) { |
//void CalibTrkReader::RunEvent(int EventNumber, long int length, char *subData) { |
78 |
void CalibTrk1Reader::RunEvent(int EventNumber, long int length) { |
void CalibTrk1Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
79 |
|
std::stringstream oss; |
80 |
char *subData; |
char subData[dataLength]; |
81 |
char eventCRC[2]; |
int ERROR; |
|
UINT16 subCRC; //CRC of the data |
|
|
UINT16 readCRC; //CRC read from the end of the subpacket |
|
|
long int dataLength; |
|
|
|
|
|
//the 2 bytes subtracted belong to the final event CRC bytes |
|
|
dataLength = length - (long int)2; |
|
|
|
|
|
subData = new char[dataLength]; |
|
82 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
|
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
|
83 |
|
|
84 |
//took the final CRC to compare it with the previous calculated CRC of the data |
char *data = new char[dataLength]; |
85 |
InputFile->read(eventCRC, sizeof(eventCRC)); |
memcpy(data, subData, dataLength); |
86 |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
int curpos=1; |
87 |
|
|
88 |
if (subCRC == readCRC){ |
//Call to the FORTRAN routin that unpack tracker events |
89 |
int ERROR; |
trkcalibpkt_( &ERROR,(unsigned char*)data, &dataLength, &curpos); |
|
//Scrivo un file temporaneo per passarlo alla routine |
|
|
//Speriamo di cambiare la routine per passargli un buffer..... |
|
|
DIR *dirp; |
|
|
std::string pathDir((char*)getenv("YODA_DATA")); |
|
|
pathDir = pathDir + "/todatemp.dat";; |
|
|
FILE *pfile; |
|
|
pfile = fopen((char*)pathDir.c_str(), "wb"); |
|
|
fwrite(subData, 1, dataLength, pfile); |
|
|
fclose(pfile); |
|
90 |
|
|
91 |
//Call to the FORTRAN routin that unpack tracker events |
calibTrk1->unpackError = ERROR; |
92 |
trkcalibpkt_(&ERROR, (char*)pathDir.c_str()); |
if (ERROR != 0) { |
93 |
|
oss.str(""); |
94 |
remove((char*)pathDir.c_str()); |
oss << "Fortran77 function trkcalibpkt error code = " << ERROR; |
95 |
|
logger->warn(oss.str().c_str()); |
96 |
//Store the unpacked data |
} |
97 |
memcpy(calibTrk1->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk1->DAQmode)); |
|
98 |
memcpy(calibTrk1->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk1->DSPnumber)); |
//Store the unpacked data |
99 |
memcpy(calibTrk1->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk1->calibnumber)); |
calibTrk1->good0 = trkcalib_.good0; |
100 |
memcpy(calibTrk1->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk1->ncalib_event)); |
memcpy(calibTrk1->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk1->DAQmode)); |
101 |
memcpy(calibTrk1->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk1->ped_l1)); |
memcpy(calibTrk1->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk1->DSPnumber)); |
102 |
memcpy(calibTrk1->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk1->ped_l2)); |
memcpy(calibTrk1->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk1->calibnumber)); |
103 |
memcpy(calibTrk1->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk1->ped_l3)); |
memcpy(calibTrk1->ncalib_event, trkcalib_.ncalib_event, sizeof(calibTrk1->ncalib_event)); |
104 |
memcpy(calibTrk1->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk1->sig_l1)); |
memcpy(calibTrk1->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk1->ped_l1)); |
105 |
memcpy(calibTrk1->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk1->sig_l2)); |
memcpy(calibTrk1->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk1->ped_l2)); |
106 |
memcpy(calibTrk1->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk1->sig_l3)); |
memcpy(calibTrk1->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk1->ped_l3)); |
107 |
memcpy(calibTrk1->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk1->nbad_l1)); |
memcpy(calibTrk1->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk1->sig_l1)); |
108 |
memcpy(calibTrk1->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk1->nbad_l2)); |
memcpy(calibTrk1->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk1->sig_l2)); |
109 |
memcpy(calibTrk1->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk1->nbad_l3)); |
memcpy(calibTrk1->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk1->sig_l3)); |
110 |
memcpy(calibTrk1->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk1->cal_flag)); |
memcpy(calibTrk1->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk1->nbad_l1)); |
111 |
|
memcpy(calibTrk1->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk1->nbad_l2)); |
112 |
//--------have to invert array because of FORTRAN <-> C different management of the indexes |
memcpy(calibTrk1->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk1->nbad_l3)); |
113 |
int tempBad_par[3072][6]; |
memcpy(calibTrk1->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk1->cal_flag)); |
114 |
int tempPed_par[3072][6]; |
|
115 |
int tempSig_par[3072][6]; |
int tempBad_par[3072][6]; |
116 |
memcpy(calibTrk1->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk1->DSPbad_par)); |
float tempPed_par[3072][6]; |
117 |
memcpy(calibTrk1->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk1->DSPped_par)); |
float tempSig_par[3072][6]; |
118 |
memcpy(calibTrk1->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk1->DSPsig_par)); |
int tempCrc_cal[3][6]; |
119 |
|
memcpy(tempBad_par,trkcalib_.DSPbad_par, sizeof(tempBad_par)); |
120 |
for (int i = 0; i < 6; i++){ |
memcpy(tempPed_par,trkcalib_.DSPped_par, sizeof(tempPed_par)); |
121 |
for (int j = 0; j < 3072; j++){ |
memcpy(tempSig_par,trkcalib_.DSPsig_par, sizeof(tempSig_par)); |
122 |
calibTrk1->DSPbad_par[i][j] = tempBad_par[j][i]; |
memcpy(tempCrc_cal,trkcalib_.crc_cal, sizeof(tempCrc_cal)); |
123 |
calibTrk1->DSPped_par[i][j] = tempPed_par[j][i]; |
|
124 |
calibTrk1->DSPsig_par[i][j] = tempSig_par[j][i]; |
for (int i = 0; i < 6; i++){ |
125 |
} |
for (int j = 0; j < 3072; j++){ |
126 |
|
calibTrk1->DSPbad_par[i][j] = tempBad_par[j][i]; |
127 |
|
calibTrk1->DSPped_par[i][j] = tempPed_par[j][i]; |
128 |
|
calibTrk1->DSPsig_par[i][j] = tempSig_par[j][i]; |
129 |
} |
} |
130 |
|
for (int k = 0; k < 3; k++){ |
131 |
|
calibTrk1->crc_cal[i][k] = tempCrc_cal[k][i]; |
132 |
|
} |
133 |
|
} |
134 |
//----------------------------------------------------------------------------------------- |
//----------------------------------------------------------------------------------------- |
|
|
|
135 |
|
|
|
cat << log4cpp::Priority::ERROR |
|
|
<< "Fortran77 function trkcalibpkt error code = " << ERROR |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
|
} else { |
|
|
cat << log4cpp::Priority::ERROR |
|
|
<< "Wrong CRC for CalibTrk1 Packet " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
|
} |
|
|
delete [] subData; |
|
136 |
} |
} |
137 |
|
|
138 |
|
|