1 |
|
2 |
// Implementation of the PhysEndRunReader 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 <sys/time.h> |
11 |
#include "CRC.h" |
12 |
} |
13 |
|
14 |
#include <fstream> |
15 |
#include "stdio.h" |
16 |
#include "ReaderAlgorithms.h" |
17 |
|
18 |
using namespace pamela; |
19 |
using namespace pamela::techmodel; |
20 |
|
21 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.PhysEndRunReader")); |
22 |
|
23 |
/** |
24 |
* Constructor. |
25 |
*/ |
26 |
PhysEndRunReader::PhysEndRunReader(void): |
27 |
TechmodelAlgorithm(PacketType::PhysEndRun, "TechmodelPhysEndRunReader") { |
28 |
logger->debug(_T("Constructor")); |
29 |
physEndRun = new PhysEndRunEvent(); |
30 |
} |
31 |
|
32 |
/** |
33 |
* Get a string with the version info of the algorithm. |
34 |
*/ |
35 |
std::string PhysEndRunReader::GetVersionInfo(void) const { |
36 |
return |
37 |
"$Header: /home/cvsmanager/yoda/techmodel/PhysEndRunReader.cpp,v 2.1 2004/12/03 22:08:01 kusanagi Exp $\n"; |
38 |
} |
39 |
|
40 |
/** |
41 |
* Initialize the algorithm with a special run. This will initialize the |
42 |
* event reader routines for all packet types. |
43 |
*/ |
44 |
void PhysEndRunReader::Init(PamelaRun *run) { |
45 |
SetInputStream(run); |
46 |
run->WriteSubPacket(this, &physEndRun, physEndRun->Class()); |
47 |
logger->debug(_T("Initialize")); |
48 |
} |
49 |
|
50 |
/** |
51 |
* Unpack the PhysEndRun event from an input file. |
52 |
*/ |
53 |
void PhysEndRunReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
54 |
|
55 |
|
56 |
} |
57 |
|