1 |
kusanagi |
1.1 |
/** @file |
2 |
|
|
* $Source: /home/cvspamela/yoda/techmodel/CalibTofReader.cpp,v $ |
3 |
|
|
* $Id: CalibTofReader.cpp,v 1.1 2004/05/11 10:12:35 nagni Exp $ |
4 |
|
|
* $Author: nagni $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the LogReader class. |
7 |
|
|
* ToBeDone: |
8 |
|
|
* Control the CRC for the entire data Packet not just for single records |
9 |
|
|
*/ |
10 |
|
|
|
11 |
|
|
#define UINT unsigned int |
12 |
|
|
#define BYTE unsigned char |
13 |
|
|
#include <string> |
14 |
|
|
#include <log4cpp/Category.hh> |
15 |
|
|
extern "C" { |
16 |
|
|
#include <sys/time.h> |
17 |
|
|
#include "CRC.h" |
18 |
|
|
} |
19 |
|
|
|
20 |
|
|
#include <fstream> |
21 |
|
|
#include "stdio.h" |
22 |
|
|
#include "ReaderAlgorithms.h" |
23 |
|
|
|
24 |
|
|
#include "event/CalibTofEvent.h" |
25 |
|
|
|
26 |
|
|
using namespace pamela; |
27 |
|
|
using namespace pamela::techmodel; |
28 |
|
|
|
29 |
|
|
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTofReader"); |
30 |
|
|
|
31 |
|
|
/** |
32 |
|
|
* Constructor. |
33 |
|
|
*/ |
34 |
|
|
CalibTofReader::CalibTofReader(void): |
35 |
|
|
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTofReader") { |
36 |
|
|
cat << log4cpp::Priority::DEBUG |
37 |
|
|
<< "Constructor " |
38 |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
39 |
|
|
CalibTof = new CalibTofEvent(); |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
/** |
43 |
|
|
* Get a string with the version info of the algorithm. |
44 |
|
|
*/ |
45 |
|
|
std::string CalibTofReader::GetVersionInfo(void) const { |
46 |
|
|
return |
47 |
|
|
"$Header: /home/cvspamela/yoda/techmodel/CalibTofReader.cpp,v 1.1 2004/05/11 10:12:35 nagni Exp $\n"; |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
/** |
51 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
52 |
|
|
* event reader routines for all packet types. |
53 |
|
|
*/ |
54 |
|
|
void CalibTofReader::Init(PamelaRun *run) { |
55 |
|
|
SetInputStream(run); |
56 |
|
|
run->WriteSubPacket(this, &CalibTof, CalibTof->Class()); |
57 |
|
|
} |
58 |
|
|
|
59 |
|
|
/** |
60 |
|
|
* Unpack the CalibTof event from an input file. |
61 |
|
|
*/ |
62 |
|
|
void CalibTofReader::RunEvent(int EventNumber, long int length) { |
63 |
|
|
|
64 |
|
|
|
65 |
|
|
} |
66 |
|
|
|