1 |
kusanagi |
1.1 |
|
2 |
|
|
// Implementation of the PhysEndRunReader class. |
3 |
|
|
|
4 |
|
|
|
5 |
|
|
#define UINT unsigned int |
6 |
|
|
#define BYTE unsigned char |
7 |
|
|
#include <string> |
8 |
kusanagi |
1.2 |
#include <log4cxx/logger.h> |
9 |
kusanagi |
1.1 |
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 |
kusanagi |
1.2 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysEndRunReader")); |
24 |
kusanagi |
1.1 |
|
25 |
|
|
/** |
26 |
|
|
* Constructor. |
27 |
|
|
*/ |
28 |
|
|
PhysEndRunReader::PhysEndRunReader(void): |
29 |
|
|
TechmodelAlgorithm(PacketType::PhysEndRun, "TechmodelPhysEndRunReader") { |
30 |
kusanagi |
1.2 |
logger->debug(_T("Constructor")); |
31 |
kusanagi |
1.1 |
physEndRun = new PhysEndRunEvent(); |
32 |
|
|
} |
33 |
|
|
|
34 |
|
|
/** |
35 |
|
|
* Get a string with the version info of the algorithm. |
36 |
|
|
*/ |
37 |
|
|
std::string PhysEndRunReader::GetVersionInfo(void) const { |
38 |
|
|
return |
39 |
kusanagi |
1.2 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 1.1 2004/08/19 15:24:46 kusanagi Exp $\n"; |
40 |
kusanagi |
1.1 |
} |
41 |
|
|
|
42 |
|
|
/** |
43 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
44 |
|
|
* event reader routines for all packet types. |
45 |
|
|
*/ |
46 |
|
|
void PhysEndRunReader::Init(PamelaRun *run) { |
47 |
|
|
SetInputStream(run); |
48 |
|
|
run->WriteSubPacket(this, &physEndRun, physEndRun->Class()); |
49 |
kusanagi |
1.2 |
logger->debug(_T("Initialize")); |
50 |
kusanagi |
1.1 |
} |
51 |
|
|
|
52 |
|
|
/** |
53 |
|
|
* Unpack the PhysEndRun event from an input file. |
54 |
|
|
*/ |
55 |
|
|
void PhysEndRunReader::RunEvent(int EventNumber, long int length) { |
56 |
|
|
|
57 |
|
|
|
58 |
|
|
} |
59 |
|
|
|