1 |
|
2 |
// Implementation of the PhysEndRunReader 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/PhysEndRunEvent.h" |
19 |
|
20 |
using namespace pamela; |
21 |
using namespace pamela::techmodel; |
22 |
|
23 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.PhysEndRunReader"); |
24 |
|
25 |
/** |
26 |
* Constructor. |
27 |
*/ |
28 |
PhysEndRunReader::PhysEndRunReader(void): |
29 |
TechmodelAlgorithm(PacketType::PhysEndRun, "TechmodelPhysEndRunReader") { |
30 |
cat << log4cpp::Priority::DEBUG |
31 |
<< "Constructor " |
32 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
33 |
physEndRun = new PhysEndRunEvent(); |
34 |
} |
35 |
|
36 |
/** |
37 |
* Get a string with the version info of the algorithm. |
38 |
*/ |
39 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
40 |
return |
41 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.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 PhysEndRunReader::Init(PamelaRun *run) { |
49 |
SetInputStream(run); |
50 |
run->WriteSubPacket(this, &physEndRun, physEndRun->Class()); |
51 |
} |
52 |
|
53 |
/** |
54 |
* Unpack the PhysEndRun event from an input file. |
55 |
*/ |
56 |
void PhysEndRunReader::RunEvent(int EventNumber, long int length) { |
57 |
|
58 |
|
59 |
} |
60 |
|