1 |
/** @file |
/** @file |
2 |
* $Source: /home/cvspamela/yoda/techmodel/CalibTofReader.cpp,v $ |
* $Source: /home/cvsmanager/yoda/techmodel/CalibTofReader.cpp,v $ |
3 |
* $Id: CalibTofReader.cpp,v 1.1 2004/05/11 10:12:35 nagni Exp $ |
* $Id: CalibTofReader.cpp,v 6.1 2006/05/30 19:10:01 kusanagi Exp $ |
4 |
* $Author: nagni $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the LogReader class. |
* Implementation of the LogReader class. |
7 |
* ToBeDone: |
* ToBeDone: |
8 |
* Control the CRC for the entire data Packet not just for single records |
* Control the CRC for the entire data Packet not just for single records |
9 |
*/ |
*/ |
10 |
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cpp/Category.hh> |
|
|
extern "C" { |
|
|
#include <sys/time.h> |
|
|
#include "CRC.h" |
|
|
} |
|
11 |
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
12 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
13 |
|
|
|
#include "event/CalibTofEvent.h" |
|
|
|
|
|
using namespace pamela; |
|
14 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
15 |
|
|
16 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTofReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTofReader")); |
17 |
|
|
18 |
/** |
/** |
19 |
* Constructor. |
* Constructor. |
20 |
*/ |
*/ |
21 |
CalibTofReader::CalibTofReader(void): |
CalibTofReader::CalibTofReader(void): |
22 |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTofReader") { |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTofReader") { |
23 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
24 |
<< "Constructor " |
calibTof = new CalibTofEvent(); |
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
|
CalibTof = new CalibTofEvent(); |
|
25 |
} |
} |
26 |
|
|
27 |
/** |
/** |
29 |
*/ |
*/ |
30 |
std::string CalibTofReader::GetVersionInfo(void) const { |
std::string CalibTofReader::GetVersionInfo(void) const { |
31 |
return |
return |
32 |
"$Header: /home/cvspamela/yoda/techmodel/CalibTofReader.cpp,v 1.1 2004/05/11 10:12:35 nagni Exp $\n"; |
"$Header: /home/cvsmanager/yoda/techmodel/CalibTofReader.cpp,v 6.1 2006/05/30 19:10:01 kusanagi Exp $\n"; |
33 |
} |
} |
34 |
|
|
35 |
/** |
/** |
37 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
38 |
*/ |
*/ |
39 |
void CalibTofReader::Init(PamelaRun *run) { |
void CalibTofReader::Init(PamelaRun *run) { |
40 |
|
logger->debug(_T("Initialize")); |
41 |
SetInputStream(run); |
SetInputStream(run); |
42 |
run->WriteSubPacket(this, &CalibTof, CalibTof->Class()); |
run->WriteSubPacket(this, &calibTof, calibTof->Class()); |
43 |
} |
} |
44 |
|
|
45 |
/** |
/** |
46 |
* Unpack the CalibTof event from an input file. |
* Unpack the CalibTof event from an input file. |
47 |
*/ |
*/ |
48 |
void CalibTofReader::RunEvent(int EventNumber, long int length) { |
void CalibTofReader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
49 |
|
char subData[dataLength]; |
50 |
|
InputFile->read(subData, sizeof(subData)); |
51 |
|
calibTof->calibTofData = new TArrayC(dataLength, subData); |
52 |
} |
} |
53 |
|
|