1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v $ |
3 |
* $Id: CalibTrk2Reader.cpp,v 1.1 2004/07/06 12:31:55 kusanagi Exp $ |
* $Id: CalibTrk2Reader.cpp,v 1.2 2004/07/06 13:31:18 kusanagi Exp $ |
4 |
* $Author: kusanagi $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the LogReader class. |
* Implementation of the LogReader class. |
13 |
#include <string> |
#include <string> |
14 |
#include <log4cpp/Category.hh> |
#include <log4cpp/Category.hh> |
15 |
extern "C" { |
extern "C" { |
16 |
|
#include "CRC.h" |
17 |
//Passo il path verso la il file temporaneo |
//Passo il path verso la il file temporaneo |
18 |
extern void trkcalibpkt_(int*, char*); |
extern void trkcalibpkt_(int*, char*); |
19 |
|
|
69 |
*/ |
*/ |
70 |
std::string CalibTrk2Reader::GetVersionInfo(void) const { |
std::string CalibTrk2Reader::GetVersionInfo(void) const { |
71 |
return |
return |
72 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 1.1 2004/07/06 12:31:55 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 1.2 2004/07/06 13:31:18 kusanagi Exp $\n"; |
73 |
} |
} |
74 |
|
|
75 |
/** |
/** |
85 |
* Unpack the CalibTrk2 event from an input file. |
* Unpack the CalibTrk2 event from an input file. |
86 |
*/ |
*/ |
87 |
void CalibTrk2Reader::RunEvent(int EventNumber, long int length) { |
void CalibTrk2Reader::RunEvent(int EventNumber, long int length) { |
|
int ERROR; |
|
88 |
|
|
89 |
|
char *subData; |
90 |
|
char eventCRC[2]; |
91 |
|
UINT16 subCRC; //CRC of the data |
92 |
|
UINT16 readCRC; //CRC read from the end of the subpacket |
93 |
|
long int dataLength; |
94 |
|
|
95 |
//the 2 bytes subtracted belong to the final event CRC bytes |
//the 2 bytes subtracted belong to the final event CRC bytes |
96 |
long int dataLength = length;// - (long int)2; |
dataLength = length - (long int)2; |
97 |
|
|
98 |
char *subData = new char[dataLength]; |
subData = new char[dataLength]; |
99 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
100 |
|
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
101 |
|
|
102 |
//Skip the last two crc bytes already checked in UnpackPscu |
//took the final CRC to compare it with the previous calculated CRC of the data |
103 |
//This part have to be refactored!!!! too bad...... |
InputFile->read(eventCRC, sizeof(eventCRC)); |
104 |
InputFile->seekg((long int)2, std::ios::cur); |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
|
|
|
|
//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 + "/"; |
|
|
pathDir = pathDir + PamelaRun::GetRunName(EventNumber) + "/todatemp.dat"; |
|
|
FILE *pfile; |
|
|
pfile = fopen((char*)pathDir.c_str(), "wb"); |
|
|
fwrite(subData, 1, dataLength, pfile); |
|
|
fclose(pfile); |
|
|
|
|
|
//Call to the FORTRAN routin that unpack tracker events |
|
|
trkcalibpkt_(&ERROR, (char*)pathDir.c_str()); |
|
|
|
|
|
remove((char*)pathDir.c_str()); |
|
|
|
|
|
//Store the unpacked data |
|
|
memcpy(calibTrk2->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk2->DAQmode)); |
|
|
memcpy(calibTrk2->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk2->DSPnumber)); |
|
|
memcpy(calibTrk2->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk2->calibnumber)); |
|
|
memcpy(calibTrk2->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk2->ncalib_event)); |
|
|
memcpy(calibTrk2->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk2->ped_l1)); |
|
|
memcpy(calibTrk2->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk2->ped_l2)); |
|
|
memcpy(calibTrk2->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk2->ped_l3)); |
|
|
memcpy(calibTrk2->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk2->sig_l1)); |
|
|
memcpy(calibTrk2->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk2->sig_l2)); |
|
|
memcpy(calibTrk2->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk2->sig_l3)); |
|
|
memcpy(calibTrk2->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk2->nbad_l1)); |
|
|
memcpy(calibTrk2->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk2->nbad_l2)); |
|
|
memcpy(calibTrk2->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk2->nbad_l3)); |
|
|
memcpy(calibTrk2->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk2->cal_flag)); |
|
|
memcpy(calibTrk2->checksum, trkcalib_.checksum, sizeof(calibTrk2->checksum)); |
|
|
memcpy(calibTrk2->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk2->DSPbad_par)); |
|
|
memcpy(calibTrk2->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk2->DSPped_par)); |
|
|
memcpy(calibTrk2->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk2->DSPsig_par)); |
|
|
|
|
|
cat << log4cpp::Priority::ERROR |
|
|
<< "Fortran77 function trkcalibpkt error code = " << ERROR |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
|
free(subData); |
|
105 |
|
|
106 |
|
if (subCRC == readCRC){ |
107 |
|
int ERROR; |
108 |
|
|
109 |
|
//Scrivo un file temporaneo per passarlo alla routine |
110 |
|
//Speriamo di cambiare la routine per passargli un buffer..... |
111 |
|
DIR *dirp; |
112 |
|
std::string pathDir((char*)getenv("YODA_DATA")); |
113 |
|
pathDir = pathDir + "/todatemp.dat"; |
114 |
|
FILE *pfile; |
115 |
|
pfile = fopen((char*)pathDir.c_str(), "wb"); |
116 |
|
fwrite(subData, 1, dataLength, pfile); |
117 |
|
fclose(pfile); |
118 |
|
|
119 |
|
//Call to the FORTRAN routin that unpack tracker events |
120 |
|
trkcalibpkt_(&ERROR, (char*)pathDir.c_str()); |
121 |
|
|
122 |
|
//delete the temporary file |
123 |
|
remove((char*)pathDir.c_str()); |
124 |
|
|
125 |
|
//Store the unpacked data |
126 |
|
memcpy(calibTrk2->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk2->DAQmode)); |
127 |
|
memcpy(calibTrk2->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk2->DSPnumber)); |
128 |
|
memcpy(calibTrk2->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk2->calibnumber)); |
129 |
|
memcpy(calibTrk2->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk2->ncalib_event)); |
130 |
|
memcpy(calibTrk2->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk2->ped_l1)); |
131 |
|
memcpy(calibTrk2->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk2->ped_l2)); |
132 |
|
memcpy(calibTrk2->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk2->ped_l3)); |
133 |
|
memcpy(calibTrk2->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk2->sig_l1)); |
134 |
|
memcpy(calibTrk2->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk2->sig_l2)); |
135 |
|
memcpy(calibTrk2->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk2->sig_l3)); |
136 |
|
memcpy(calibTrk2->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk2->nbad_l1)); |
137 |
|
memcpy(calibTrk2->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk2->nbad_l2)); |
138 |
|
memcpy(calibTrk2->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk2->nbad_l3)); |
139 |
|
memcpy(calibTrk2->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk2->cal_flag)); |
140 |
|
memcpy(calibTrk2->checksum, trkcalib_.checksum, sizeof(calibTrk2->checksum)); |
141 |
|
memcpy(calibTrk2->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk2->DSPbad_par)); |
142 |
|
memcpy(calibTrk2->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk2->DSPped_par)); |
143 |
|
memcpy(calibTrk2->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk2->DSPsig_par)); |
144 |
|
|
145 |
|
cat << log4cpp::Priority::ERROR |
146 |
|
<< "Fortran77 function trkcalibpkt error code = " << ERROR |
147 |
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
148 |
|
free(subData); |
149 |
|
} else { |
150 |
|
cat << log4cpp::Priority::ERROR |
151 |
|
<< "Wrong CRC for CalibTrk2 Packet " |
152 |
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
153 |
|
} |
154 |
} |
} |
155 |
|
|