1 |
kusanagi |
1.1 |
|
2 |
|
|
// Implementation of the TofAlarmReader class. |
3 |
|
|
|
4 |
|
|
|
5 |
|
|
#define UINT unsigned int |
6 |
|
|
#define BYTE unsigned char |
7 |
|
|
#include <string> |
8 |
|
|
#include <log4cxx/logger.h> |
9 |
|
|
extern "C" { |
10 |
|
|
#include "CRC.h" |
11 |
|
|
} |
12 |
|
|
|
13 |
|
|
#include <fstream> |
14 |
|
|
#include "stdio.h" |
15 |
|
|
#include "ReaderAlgorithms.h" |
16 |
|
|
|
17 |
|
|
using namespace pamela; |
18 |
|
|
using namespace pamela::techmodel; |
19 |
|
|
|
20 |
|
|
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TofAlarmReader")); |
21 |
|
|
|
22 |
|
|
/** |
23 |
|
|
* Constructor. |
24 |
|
|
*/ |
25 |
|
|
TofAlarmReader::TofAlarmReader(void): |
26 |
|
|
TechmodelAlgorithm(PacketType::TofAlarm, "TechmodelTofAlarmReader") { |
27 |
|
|
logger->debug(_T("Constructor")); |
28 |
|
|
tofAlarm = new TofAlarmEvent(); |
29 |
|
|
} |
30 |
|
|
|
31 |
|
|
/** |
32 |
|
|
* Get a string with the version info of the algorithm. |
33 |
|
|
*/ |
34 |
|
|
std::string TofAlarmReader::GetVersionInfo(void) const { |
35 |
|
|
return |
36 |
|
|
"$Trailer: /home/cvsmanager/yoda/techmodel/TofAlarmReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
37 |
|
|
} |
38 |
|
|
|
39 |
|
|
/** |
40 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
41 |
|
|
* event reader routines for all packet types. |
42 |
|
|
*/ |
43 |
|
|
void TofAlarmReader::Init(PamelaRun *run) { |
44 |
|
|
SetInputStream(run); |
45 |
|
|
run->WriteSubPacket(this, &tofAlarm, tofAlarm->Class()); |
46 |
|
|
logger->debug(_T("Initialize")); |
47 |
|
|
} |
48 |
|
|
|
49 |
|
|
/** |
50 |
|
|
* Unpack the TofAlarm event from an input file. |
51 |
|
|
*/ |
52 |
|
|
void TofAlarmReader::RunEvent(int EventNumber, long int length) { |
53 |
|
|
|
54 |
|
|
|
55 |
|
|
} |
56 |
|
|
|