1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvspamela/yoda/techmodel/RunTrailerReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/RunTrailerReader.cpp,v $ |
3 |
* $Id: RunTrailerReader.cpp,v 1.1 2004/06/09 23:18:20 nagni Exp $ |
* $Id: RunTrailerReader.cpp,v 1.2 2004/07/17 20:03:38 kusanagi Exp $ |
4 |
* $Author: nagni $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the RunHeader 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> |
13 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
14 |
extern "C" { |
extern "C" { |
15 |
#include <sys/time.h> |
#include <sys/time.h> |
16 |
#include "CRC.h" |
#include "CRC.h" |
20 |
#include "stdio.h" |
#include "stdio.h" |
21 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
22 |
|
|
23 |
#include "event/RunHeaderEvent.h" |
#include "event/RunTrailerEvent.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.RunHeaderReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.RunTrailerReader")); |
29 |
|
|
30 |
/** |
/** |
31 |
* Constructor. |
* Constructor. |
32 |
*/ |
*/ |
33 |
RunHeaderReader::RunHeaderReader(void): |
RunTrailerReader::RunTrailerReader(void): |
34 |
TechmodelAlgorithm(PacketType::Log, "TechmodelRunHeaderReader") { |
TechmodelAlgorithm(PacketType::Log, "TechmodelRunTrailerReader") { |
35 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
36 |
<< "Constructor " |
RunTrailer = new RunTrailerEvent(); |
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
|
RunHeader = new RunHeaderEvent(); |
|
37 |
} |
} |
38 |
|
|
39 |
/** |
/** |
40 |
* Get a string with the version info of the algorithm. |
* Get a string with the version info of the algorithm. |
41 |
*/ |
*/ |
42 |
std::string RunHeaderReader::GetVersionInfo(void) const { |
std::string RunTrailerReader::GetVersionInfo(void) const { |
43 |
return |
return |
44 |
"$Header: /home/cvspamela/yoda/techmodel/RunTrailerReader.cpp,v 1.1 2004/06/09 23:18:20 nagni Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/RunTrailerReader.cpp,v 1.2 2004/07/17 20:03:38 kusanagi Exp $\n"; |
45 |
} |
} |
46 |
|
|
47 |
/** |
/** |
48 |
* Initialize the algorithm with a special run. This will initialize the |
* Initialize the algorithm with a special run. This will initialize the |
49 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
50 |
*/ |
*/ |
51 |
void RunHeaderReader::Init(PamelaRun *run) { |
void RunTrailerReader::Init(PamelaRun *run) { |
52 |
SetInputStream(run); |
SetInputStream(run); |
53 |
run->WriteSubPacket(this, &RunHeader, RunHeader->Class()); |
run->WriteSubPacket(this, &RunTrailer, RunTrailer->Class()); |
54 |
|
logger->debug(_T("Initialize")); |
55 |
} |
} |
56 |
|
|
57 |
/** |
/** |
58 |
* Unpack the RunHeader event from an input file. |
* Unpack the RunTrailer event from an input file. |
59 |
*/ |
*/ |
60 |
void RunHeaderReader::RunEvent(int EventNumber, long int length) { |
void RunTrailerReader::RunEvent(int EventNumber, long int length) { |
61 |
|
|
62 |
} |
} |
63 |
|
|