| 2 |
// Implementation of the CalibCalPulse1Reader class. |
// Implementation of the CalibCalPulse1Reader class. |
| 3 |
|
|
| 4 |
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cxx/logger.h> |
|
| 5 |
extern "C" { |
extern "C" { |
| 6 |
#include "CRC.h" |
#include "CRC.h" |
| 7 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
//Struct per il passaggio di dati da e verso la chiamata fortran |
| 16 |
void calpulse_(char*, long int*, int*); |
void calpulse_(char*, long int*, int*); |
| 17 |
} |
} |
| 18 |
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
| 19 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
| 20 |
|
|
|
#include "event/CalibCalPulse1Event.h" |
|
|
|
|
|
using namespace pamela; |
|
| 21 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
| 22 |
|
|
| 23 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse1Reader")); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse1Reader")); |
| 36 |
*/ |
*/ |
| 37 |
std::string CalibCalPulse1Reader::GetVersionInfo(void) const { |
std::string CalibCalPulse1Reader::GetVersionInfo(void) const { |
| 38 |
return |
return |
| 39 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPulse1Reader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n"; |
"$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/CalibCalPulse1Reader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n"; |
| 40 |
} |
} |
| 41 |
|
|
| 42 |
/** |
/** |
| 56 |
std::stringstream oss; |
std::stringstream oss; |
| 57 |
char packetData[dataLength]; |
char packetData[dataLength]; |
| 58 |
int ERROR; |
int ERROR; |
| 59 |
|
memset(packetData, 0, dataLength*sizeof(char)); |
| 60 |
InputFile->read(packetData, sizeof(packetData)); |
InputFile->read(packetData, sizeof(packetData)); |
| 61 |
|
|
| 62 |
calpulse_(packetData, &dataLength, &ERROR); |
calpulse_(packetData, &dataLength, &ERROR); |
| 63 |
|
|
| 64 |
|
calibCalPulse1->unpackError = ERROR; |
| 65 |
oss.str(""); |
oss.str(""); |
| 66 |
if (ERROR != 0) { |
if (ERROR != 0) { |
| 67 |
char *errmsg; |
char *errmsg; |
| 69 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
| 70 |
} |
} |
| 71 |
oss << "Fortran77 function calpulse error code = " << ERROR |
oss << "Fortran77 function calpulse error code = " << ERROR |
| 72 |
<< "\n" << errmsg; |
<< " " << errmsg; |
| 73 |
logger->warn(oss.str().c_str()); |
logger->warn(oss.str().c_str()); |
| 74 |
} else { |
} //else { |
| 75 |
//Store the unpacked data |
//Store the unpacked data |
| 76 |
calibCalPulse1->iev = calpul_.iev; |
calibCalPulse1->iev = calpul_.iev; |
| 77 |
memcpy(calibCalPulse1->pstwerr, calpul_.pstwerr, sizeof(calibCalPulse1->pstwerr)); |
memcpy(calibCalPulse1->pstwerr, calpul_.pstwerr, sizeof(calibCalPulse1->pstwerr)); |
| 87 |
} |
} |
| 88 |
} |
} |
| 89 |
//----------------------------------------------------------------------------------------- |
//----------------------------------------------------------------------------------------- |
| 90 |
} |
//} |
| 91 |
} |
} |
| 92 |
|
|