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 1.2 2004/09/21 20:24:33 kusanagi Exp $ |
4 |
* $Author: nagni $ |
* $Author: kusanagi $ |
5 |
* |
* |
6 |
* Implementation of the LogReader class. |
* Implementation of the LogReader class. |
7 |
* ToBeDone: |
* ToBeDone: |
11 |
#define UINT unsigned int |
#define UINT unsigned int |
12 |
#define BYTE unsigned char |
#define BYTE unsigned char |
13 |
#include <string> |
#include <string> |
14 |
#include <log4cpp/Category.hh> |
#include <log4cxx/logger.h> |
15 |
extern "C" { |
extern "C" { |
16 |
#include <sys/time.h> |
#include <sys/time.h> |
17 |
#include "CRC.h" |
#include "CRC.h" |
26 |
using namespace pamela; |
using namespace pamela; |
27 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
28 |
|
|
29 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibTofReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTofReader")); |
30 |
|
|
31 |
/** |
/** |
32 |
* Constructor. |
* Constructor. |
33 |
*/ |
*/ |
34 |
CalibTofReader::CalibTofReader(void): |
CalibTofReader::CalibTofReader(void): |
35 |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTofReader") { |
TechmodelAlgorithm(PacketType::Log, "TechmodelCalibTofReader") { |
36 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
37 |
CalibTof = new CalibTofEvent(); |
CalibTof = new CalibTofEvent(); |
38 |
} |
} |
39 |
|
|
42 |
*/ |
*/ |
43 |
std::string CalibTofReader::GetVersionInfo(void) const { |
std::string CalibTofReader::GetVersionInfo(void) const { |
44 |
return |
return |
45 |
"$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 1.2 2004/09/21 20:24:33 kusanagi Exp $\n"; |
46 |
} |
} |
47 |
|
|
48 |
/** |
/** |
50 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
51 |
*/ |
*/ |
52 |
void CalibTofReader::Init(PamelaRun *run) { |
void CalibTofReader::Init(PamelaRun *run) { |
53 |
|
logger->debug(_T("Initialize")); |
54 |
SetInputStream(run); |
SetInputStream(run); |
55 |
run->WriteSubPacket(this, &CalibTof, CalibTof->Class()); |
run->WriteSubPacket(this, &CalibTof, CalibTof->Class()); |
56 |
} |
} |