| 1 |
/** @file |
/** @file |
| 2 |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTrkReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v $ |
| 3 |
* $Id: CalibTrkReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $ |
* $Id: CalibTrk1Reader.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 |
//The int* return the error code |
//The int* return the error code |
| 18 |
//The char* is the path to the temporary file |
//The char* is the path to the temporary file |
| 19 |
extern void trkcalibpkt_(int*, char*); |
extern void trkcalibpkt_(int*, char*); |
| 48 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
| 49 |
#include "event/PamelaRun.h" |
#include "event/PamelaRun.h" |
| 50 |
|
|
| 51 |
#include "event/CalibTrkEvent.h" |
#include "event/CalibTrk1Event.h" |
| 52 |
|
|
| 53 |
using namespace pamela; |
using namespace pamela; |
| 54 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
| 55 |
|
|
| 56 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrkReader"); |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrk1Reader"); |
| 57 |
|
|
| 58 |
/** |
/** |
| 59 |
* Constructor. |
* Constructor. |
| 60 |
*/ |
*/ |
| 61 |
CalibTrkReader::CalibTrkReader(void): |
CalibTrk1Reader::CalibTrk1Reader(void): |
| 62 |
TechmodelAlgorithm(PacketType::CalibTrk, "TechmodelCalibTrkReader") { |
TechmodelAlgorithm(PacketType::CalibTrk1, "TechmodelCalibTrk1Reader") { |
| 63 |
cat << log4cpp::Priority::DEBUG |
cat << log4cpp::Priority::DEBUG |
| 64 |
<< "Constructor " |
<< "Constructor " |
| 65 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 66 |
calibTrk = new CalibTrkEvent(); |
calibTrk1 = new CalibTrk1Event(); |
| 67 |
} |
} |
| 68 |
|
|
| 69 |
/** |
/** |
| 70 |
* Get a string with the version info of the algorithm. |
* Get a string with the version info of the algorithm. |
| 71 |
*/ |
*/ |
| 72 |
std::string CalibTrkReader::GetVersionInfo(void) const { |
std::string CalibTrk1Reader::GetVersionInfo(void) const { |
| 73 |
return |
return |
| 74 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTrkReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v 1.2 2004/07/06 13:31:18 kusanagi Exp $\n"; |
| 75 |
} |
} |
| 76 |
|
|
| 77 |
/** |
/** |
| 78 |
* Initialize the algorithm with a special run. This will initialize the |
* Initialize the algorithm with a special run. This will initialize the |
| 79 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
| 80 |
*/ |
*/ |
| 81 |
void CalibTrkReader::Init(PamelaRun *run) { |
void CalibTrk1Reader::Init(PamelaRun *run) { |
| 82 |
SetInputStream(run); |
SetInputStream(run); |
| 83 |
run->WriteSubPacket(this, &calibTrk, calibTrk->Class()); |
run->WriteSubPacket(this, &calibTrk1, calibTrk1->Class()); |
| 84 |
} |
} |
| 85 |
|
|
| 86 |
/** |
/** |
| 87 |
* Unpack the CalibTrk event from an input file. |
* Unpack the CalibTrk event from an input file. |
| 88 |
*/ |
*/ |
| 89 |
//void CalibTrkReader::RunEvent(int EventNumber, long int length, char *subData) { |
//void CalibTrkReader::RunEvent(int EventNumber, long int length, char *subData) { |
| 90 |
void CalibTrkReader::RunEvent(int EventNumber, long int length) { |
void CalibTrk1Reader::RunEvent(int EventNumber, long int length) { |
| 91 |
int ERROR; |
|
| 92 |
|
char *subData; |
| 93 |
|
char eventCRC[2]; |
| 94 |
|
UINT16 subCRC; //CRC of the data |
| 95 |
|
UINT16 readCRC; //CRC read from the end of the subpacket |
| 96 |
|
long int dataLength; |
| 97 |
|
|
| 98 |
//the 2 bytes subtracted belong to the final event CRC bytes |
//the 2 bytes subtracted belong to the final event CRC bytes |
| 99 |
long int dataLength = length;// - (long int)2; |
dataLength = length - (long int)2; |
| 100 |
|
|
| 101 |
char *subData = new char[dataLength]; |
subData = new char[dataLength]; |
| 102 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
| 103 |
|
subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength); |
| 104 |
|
|
| 105 |
//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 |
| 106 |
//This part have to be refactored!!!! too bad...... |
InputFile->read(eventCRC, sizeof(eventCRC)); |
| 107 |
InputFile->seekg((long int)2, std::ios::cur); |
readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF); |
| 108 |
|
|
| 109 |
//Scrivo un file temporaneo per passarlo alla routine |
if (subCRC == readCRC){ |
| 110 |
//Speriamo di cambiare la routine per passargli un buffer..... |
int ERROR; |
| 111 |
DIR *dirp; |
//Scrivo un file temporaneo per passarlo alla routine |
| 112 |
std::string pathDir((char*)getenv("YODA_DATA")); |
//Speriamo di cambiare la routine per passargli un buffer..... |
| 113 |
pathDir = pathDir + "/"; |
DIR *dirp; |
| 114 |
pathDir = pathDir + PamelaRun::GetRunName(EventNumber) + "/todatemp.dat"; |
std::string pathDir((char*)getenv("YODA_DATA")); |
| 115 |
FILE *pfile; |
pathDir = pathDir + "/todatemp.dat";; |
| 116 |
pfile = fopen((char*)pathDir.c_str(), "wb"); |
FILE *pfile; |
| 117 |
fwrite(subData, 1, dataLength, pfile); |
pfile = fopen((char*)pathDir.c_str(), "wb"); |
| 118 |
fclose(pfile); |
fwrite(subData, 1, dataLength, pfile); |
| 119 |
|
fclose(pfile); |
| 120 |
|
|
| 121 |
//Call to the FORTRAN routin that unpack tracker events |
//Call to the FORTRAN routin that unpack tracker events |
| 122 |
trkcalibpkt_(&ERROR, (char*)pathDir.c_str()); |
trkcalibpkt_(&ERROR, (char*)pathDir.c_str()); |
| 123 |
|
|
| 124 |
remove((char*)pathDir.c_str()); |
remove((char*)pathDir.c_str()); |
| 125 |
|
|
| 126 |
//Store the unpacked data |
//Store the unpacked data |
| 127 |
memcpy(calibTrk->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk->DAQmode)); |
memcpy(calibTrk1->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk1->DAQmode)); |
| 128 |
memcpy(calibTrk->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk->DSPnumber)); |
memcpy(calibTrk1->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk1->DSPnumber)); |
| 129 |
memcpy(calibTrk->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk->calibnumber)); |
memcpy(calibTrk1->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk1->calibnumber)); |
| 130 |
memcpy(calibTrk->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk->ncalib_event)); |
memcpy(calibTrk1->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk1->ncalib_event)); |
| 131 |
memcpy(calibTrk->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk->ped_l1)); |
memcpy(calibTrk1->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk1->ped_l1)); |
| 132 |
memcpy(calibTrk->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk->ped_l2)); |
memcpy(calibTrk1->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk1->ped_l2)); |
| 133 |
memcpy(calibTrk->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk->ped_l3)); |
memcpy(calibTrk1->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk1->ped_l3)); |
| 134 |
memcpy(calibTrk->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk->sig_l1)); |
memcpy(calibTrk1->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk1->sig_l1)); |
| 135 |
memcpy(calibTrk->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk->sig_l2)); |
memcpy(calibTrk1->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk1->sig_l2)); |
| 136 |
memcpy(calibTrk->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk->sig_l3)); |
memcpy(calibTrk1->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk1->sig_l3)); |
| 137 |
memcpy(calibTrk->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk->nbad_l1)); |
memcpy(calibTrk1->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk1->nbad_l1)); |
| 138 |
memcpy(calibTrk->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk->nbad_l2)); |
memcpy(calibTrk1->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk1->nbad_l2)); |
| 139 |
memcpy(calibTrk->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk->nbad_l3)); |
memcpy(calibTrk1->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk1->nbad_l3)); |
| 140 |
memcpy(calibTrk->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk->cal_flag)); |
memcpy(calibTrk1->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk1->cal_flag)); |
| 141 |
memcpy(calibTrk->checksum, trkcalib_.checksum, sizeof(calibTrk->checksum)); |
memcpy(calibTrk1->checksum, trkcalib_.checksum, sizeof(calibTrk1->checksum)); |
| 142 |
memcpy(calibTrk->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk->DSPbad_par)); |
memcpy(calibTrk1->DSPbad_par,trkcalib_.DSPbad_par, sizeof(calibTrk1->DSPbad_par)); |
| 143 |
memcpy(calibTrk->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk->DSPped_par)); |
memcpy(calibTrk1->DSPped_par,trkcalib_.DSPped_par, sizeof(calibTrk1->DSPped_par)); |
| 144 |
memcpy(calibTrk->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk->DSPsig_par)); |
memcpy(calibTrk1->DSPsig_par,trkcalib_.DSPsig_par, sizeof(calibTrk1->DSPsig_par)); |
| 145 |
|
|
| 146 |
cat << log4cpp::Priority::ERROR |
cat << log4cpp::Priority::ERROR |
| 147 |
<< "Fortran77 function trkcalibpkt error code = " << ERROR |
<< "Fortran77 function trkcalibpkt error code = " << ERROR |
| 148 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 149 |
free(subData); |
free(subData); |
| 150 |
|
} else { |
| 151 |
|
cat << log4cpp::Priority::ERROR |
| 152 |
|
<< "Wrong CRC for CalibTrk1 Packet " |
| 153 |
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 154 |
|
} |
| 155 |
} |
} |
| 156 |
|
|