| 1 |
/** @file |
| 2 |
* $Source: /home/cvspamela/yoda/techmodel/CalibTrdReader.cpp,v $ |
| 3 |
* $Id: CalibTrdReader.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/CalibTrdEvent.h" |
| 25 |
|
| 26 |
using namespace pamela; |
| 27 |
using namespace pamela::techmodel; |
| 28 |
|
| 29 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTrdReader"); |
| 30 |
|
| 31 |
/** |
| 32 |
* Constructor. |
| 33 |
*/ |
| 34 |
CalibTrdReader::CalibTrdReader(void): |
| 35 |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTrdReader") { |
| 36 |
cat << log4cpp::Priority::DEBUG |
| 37 |
<< "Constructor " |
| 38 |
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
| 39 |
CalibTrd = new CalibTrdEvent(); |
| 40 |
} |
| 41 |
|
| 42 |
/** |
| 43 |
* Get a string with the version info of the algorithm. |
| 44 |
*/ |
| 45 |
std::string CalibTrdReader::GetVersionInfo(void) const { |
| 46 |
return |
| 47 |
"$Header: /home/cvspamela/yoda/techmodel/CalibTrdReader.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 CalibTrdReader::Init(PamelaRun *run) { |
| 55 |
SetInputStream(run); |
| 56 |
run->WriteSubPacket(this, &CalibTrd, CalibTrd->Class()); |
| 57 |
} |
| 58 |
|
| 59 |
/** |
| 60 |
* Unpack the CalibTrd event from an input file. |
| 61 |
*/ |
| 62 |
void CalibTrdReader::RunEvent(int EventNumber, long int length) { |
| 63 |
|
| 64 |
|
| 65 |
} |
| 66 |
|