| 1 |
|
/** @file |
| 2 |
|
* $Author: kusanagi $ |
| 3 |
|
* $Date: 2006/02/07 17:11:10 $ |
| 4 |
|
* $Revision: 6.0 $ |
| 5 |
|
* |
| 6 |
|
* Implementation of the TrkInitReader class. |
| 7 |
|
*/ |
| 8 |
|
|
|
// Implementation of the TrkInitReader 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/TrkInitEvent.h" |
|
|
|
|
|
using namespace pamela; |
|
| 11 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
| 12 |
|
|
| 13 |
static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.TrkInitReader"); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrkInitReader")); |
| 14 |
|
|
| 15 |
/** |
/** |
| 16 |
* Constructor. |
* Constructor. |
| 17 |
*/ |
*/ |
| 18 |
TrkInitReader::TrkInitReader(void): |
TrkInitReader::TrkInitReader(void): |
| 19 |
TechmodelAlgorithm(PacketType::TrkInit, "TechmodelTrkInitReader") { |
TechmodelAlgorithm(PacketType::TrkInit, "TechmodelTrkInitReader") { |
| 20 |
cat << log4cpp::Priority::DEBUG |
logger->debug(_T("Constructor")); |
|
<< "Constructor " |
|
|
<< "\n " << log4cpp::CategoryStream::ENDLINE; |
|
| 21 |
trkInit = new TrkInitEvent(); |
trkInit = new TrkInitEvent(); |
| 22 |
} |
} |
| 23 |
|
|
| 26 |
*/ |
*/ |
| 27 |
std::string TrkInitReader::GetVersionInfo(void) const { |
std::string TrkInitReader::GetVersionInfo(void) const { |
| 28 |
return |
return |
| 29 |
"$Trailer: /home/cvsmanager/yoda/techmodel/TrkInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Trailer: /home/cvsmanager/yoda/techmodel/TrkInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
| 30 |
} |
} |
| 31 |
|
|
| 32 |
/** |
/** |
| 40 |
|
|
| 41 |
/** |
/** |
| 42 |
* Unpack the TrkInit event from an input file. |
* Unpack the TrkInit event from an input file. |
| 43 |
|
* The CPU does not add any CRC control at the packet end. |
| 44 |
|
* @param EventNumber |
| 45 |
|
* @param dataLength |
| 46 |
*/ |
*/ |
| 47 |
void TrkInitReader::RunEvent(int EventNumber, long int length) { |
void TrkInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
| 48 |
|
char subData[dataLength]; |
| 49 |
|
memset(subData, 0, dataLength*sizeof(char)); |
| 50 |
|
InputFile->read(subData, sizeof(subData)); |
| 51 |
|
trkInit->trkInitData = new TArrayC(dataLength, subData); |
| 52 |
} |
} |
| 53 |
|
|