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 <sys/time.h> |
#include "CRC.h" |
|
#include "CRC.h" |
|
11 |
} |
} |
12 |
|
|
13 |
#include <fstream> |
#include <fstream> |
14 |
#include "stdio.h" |
#include "stdio.h" |
15 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
16 |
|
|
|
#include "event/AcInitEvent.h" |
|
17 |
|
|
18 |
using namespace pamela; |
using namespace pamela; |
19 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
20 |
|
|
21 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.AcInitReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.AcInitReader")); |
22 |
|
|
23 |
/** |
/** |
24 |
* Constructor. |
* Constructor. |
25 |
*/ |
*/ |
26 |
AcInitReader::AcInitReader(void): |
AcInitReader::AcInitReader(void): |
27 |
TechmodelAlgorithm(PacketType::AcInit, "TechmodelAcInitReader") { |
TechmodelAlgorithm(PacketType::AcInit, "TechmodelAcInitReader") { |
28 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
29 |
acInit = new AcInitEvent(); |
acInit = new AcInitEvent(); |
30 |
} |
} |
31 |
|
|
42 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
43 |
*/ |
*/ |
44 |
void AcInitReader::Init(PamelaRun *run) { |
void AcInitReader::Init(PamelaRun *run) { |
45 |
|
logger->debug(_T("Initialize")); |
46 |
SetInputStream(run); |
SetInputStream(run); |
47 |
run->WriteSubPacket(this, &acInit, acInit->Class()); |
run->WriteSubPacket(this, &acInit, acInit->Class()); |
48 |
} |
} |