5 |
#define UINT unsigned int |
#define UINT unsigned int |
6 |
#define BYTE unsigned char |
#define BYTE unsigned char |
7 |
#include <string> |
#include <string> |
8 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
9 |
extern "C" { |
extern "C" { |
10 |
#include "CRC.h" |
#include "CRC.h" |
11 |
//Struct per il passaggio di dati da e verso la chiamata fortran |
//Struct per il passaggio di dati da e verso la chiamata fortran |
33 |
using namespace pamela; |
using namespace pamela; |
34 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
35 |
|
|
36 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibCalPulse1Reader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse1Reader")); |
37 |
|
|
38 |
/** |
/** |
39 |
* Constructor. |
* Constructor. |
40 |
*/ |
*/ |
41 |
CalibCalPulse1Reader::CalibCalPulse1Reader(void): |
CalibCalPulse1Reader::CalibCalPulse1Reader(void): |
42 |
TechmodelAlgorithm(PacketType::CalibCalPulse1, "TechmodelCalibCalPulse1Reader") { |
TechmodelAlgorithm(PacketType::CalibCalPulse1, "TechmodelCalibCalPulse1Reader") { |
43 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
44 |
calibCalPulse1 = new CalibCalPulse1Event(); |
calibCalPulse1 = new CalibCalPulse1Event(); |
45 |
} |
} |
46 |
|
|
49 |
*/ |
*/ |
50 |
std::string CalibCalPulse1Reader::GetVersionInfo(void) const { |
std::string CalibCalPulse1Reader::GetVersionInfo(void) const { |
51 |
return |
return |
52 |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPulse1Reader.cpp,v 1.2 2004/08/20 15:01:41 kusanagi Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/CalibCalPulse1Reader.cpp,v 1.3 2004/08/24 16:01:57 kusanagi Exp $\n"; |
53 |
} |
} |
54 |
|
|
55 |
/** |
/** |
57 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
58 |
*/ |
*/ |
59 |
void CalibCalPulse1Reader::Init(PamelaRun *run) { |
void CalibCalPulse1Reader::Init(PamelaRun *run) { |
60 |
|
logger->debug(_T("Initialize")); |
61 |
SetInputStream(run); |
SetInputStream(run); |
62 |
run->WriteSubPacket(this, &calibCalPulse1, calibCalPulse1->Class()); |
run->WriteSubPacket(this, &calibCalPulse1, calibCalPulse1->Class()); |
63 |
} |
} |
66 |
* Unpack the CalibCalPulse1 event from an input file. |
* Unpack the CalibCalPulse1 event from an input file. |
67 |
*/ |
*/ |
68 |
void CalibCalPulse1Reader::RunEvent(int EventNumber, long int length) { |
void CalibCalPulse1Reader::RunEvent(int EventNumber, long int length) { |
69 |
|
std::stringstream oss; |
70 |
char *packetData; |
char *packetData; |
71 |
char CRCevent[2]; |
char CRCevent[2]; |
72 |
UINT16 calculatedCRC = 0; //calculated CRC |
UINT16 calculatedCRC = 0; //calculated CRC |
89 |
switch (ERROR){ |
switch (ERROR){ |
90 |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
case 1: errmsg = "CALORIMETER NOT FOUND"; |
91 |
} |
} |
92 |
cat << log4cpp::Priority::ERROR |
oss.flush(); |
93 |
<< "Fortran77 function calpulse error code = " << ERROR |
oss << "Fortran77 function calpulse error code = " << ERROR |
94 |
<< errmsg |
<< errmsg; |
95 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
logger->warn(oss.str().c_str()); |
96 |
} else { |
} else { |
97 |
//Store the unpacked data |
//Store the unpacked data |
98 |
calibCalPulse1->IEV2 = calib_.IEV2; |
calibCalPulse1->IEV2 = calib_.IEV2; |
136 |
//----------------------------------------------------------------------------------------- |
//----------------------------------------------------------------------------------------- |
137 |
} |
} |
138 |
} else { |
} else { |
139 |
cat << log4cpp::Priority::ERROR |
logger->warn(_T("The test of calculated CRC with one wrote on file FAILED!!")); |
|
<< "The test of calculated CRC with one wrote on file FAILED!!" |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
140 |
} |
} |
141 |
delete [] packetData; |
delete [] packetData; |
142 |
} |
} |