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