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