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