1 |
|
/** @file |
2 |
|
* $Author: kusanagi $ |
3 |
|
* $Date: 2006/02/04 12:37:44 $ |
4 |
|
* $Revision: 5.1 $ |
5 |
|
* |
6 |
|
* Implementation of the CalInitReader class. |
7 |
|
*/ |
8 |
|
|
|
// Implementation of the CalInitReader class. |
|
|
|
|
|
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cpp/Category.hh> |
|
|
extern "C" { |
|
|
#include <sys/time.h> |
|
|
#include "CRC.h" |
|
|
} |
|
|
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
9 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
10 |
|
|
|
#include "event/CalInitEvent.h" |
|
|
|
|
|
using namespace pamela; |
|
11 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
12 |
|
|
13 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalInitReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalInitReader")); |
14 |
|
|
15 |
/** |
/** |
16 |
* Constructor. |
* Constructor. |
17 |
*/ |
*/ |
18 |
CalInitReader::CalInitReader(void): |
CalInitReader::CalInitReader(void): |
19 |
TechmodelAlgorithm(PacketType::CalInit, "TechmodelCalInitReader") { |
TechmodelAlgorithm(PacketType::CalInit, "TechmodelCalInitReader") { |
20 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
21 |
calInit = new CalInitEvent(); |
calInit = new CalInitEvent(); |
22 |
} |
} |
23 |
|
|
26 |
*/ |
*/ |
27 |
std::string CalInitReader::GetVersionInfo(void) const { |
std::string CalInitReader::GetVersionInfo(void) const { |
28 |
return |
return |
29 |
"$Trailer: /home/cvsmanager/yoda/techmodel/CalInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Trailer: /opt/cvsmanager/yoda/techmodel/CalInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
30 |
} |
} |
31 |
|
|
32 |
/** |
/** |
34 |
* event reader routines for all packet types. |
* event reader routines for all packet types. |
35 |
*/ |
*/ |
36 |
void CalInitReader::Init(PamelaRun *run) { |
void CalInitReader::Init(PamelaRun *run) { |
37 |
|
logger->debug(_T("Initialize")); |
38 |
SetInputStream(run); |
SetInputStream(run); |
39 |
run->WriteSubPacket(this, &calInit, calInit->Class()); |
run->WriteSubPacket(this, &calInit, calInit->Class()); |
40 |
} |
} |
41 |
|
|
42 |
/** |
/** |
43 |
* Unpack the CalInit event from an input file. |
* Unpack the CalInit event from an input file. |
44 |
|
* The CPU does not add any CRC control at the packet end. |
45 |
|
* @param EventNumber |
46 |
|
* @param dataLength |
47 |
*/ |
*/ |
48 |
void CalInitReader::RunEvent(int EventNumber, long int length) { |
void CalInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
49 |
|
char subData[dataLength]; |
50 |
|
InputFile->read(subData, sizeof(subData)); |
51 |
|
calInit->calInitData = new TArrayC(dataLength, subData); |
52 |
} |
} |
53 |
|
|