1 |
|
/** @file |
2 |
|
* $Author: Maurizio Nagni $ |
3 |
|
* $Date: 2005/08/29 09:45:48 $ |
4 |
|
* $Revision: 5.0 $ |
5 |
|
* |
6 |
|
* Implementation of the Ac2InitReader class. |
7 |
|
*/ |
8 |
|
|
|
// Implementation of the Ac2InitReader class. |
|
|
|
|
|
|
|
|
#define UINT unsigned int |
|
|
#define BYTE unsigned char |
|
|
#include <string> |
|
|
#include <log4cxx/logger.h> |
|
|
extern "C" { |
|
|
#include "CRC.h" |
|
|
} |
|
|
|
|
|
#include <fstream> |
|
|
#include "stdio.h" |
|
9 |
#include "ReaderAlgorithms.h" |
#include "ReaderAlgorithms.h" |
10 |
|
|
|
|
|
|
using namespace pamela; |
|
11 |
using namespace pamela::techmodel; |
using namespace pamela::techmodel; |
|
|
|
12 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.Ac2InitReader")); |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.Ac2InitReader")); |
13 |
|
|
14 |
/** |
/** |
25 |
*/ |
*/ |
26 |
std::string Ac2InitReader::GetVersionInfo(void) const { |
std::string Ac2InitReader::GetVersionInfo(void) const { |
27 |
return |
return |
28 |
"$Trailer: /home/cvsmanager/yoda/techmodel/Ac2InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
"$Trailer: /home/cvsmanager/yoda/techmodel/Ac2InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
29 |
} |
} |
30 |
|
|
31 |
/** |
/** |
40 |
|
|
41 |
/** |
/** |
42 |
* Unpack the Ac2Init event from an input file. |
* Unpack the Ac2Init 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 Ac2InitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){ |
void Ac2InitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
48 |
|
char subData[dataLength]; |
49 |
|
InputFile->read(subData, sizeof(subData)); |
50 |
|
ac2Init->ac2InitData = new TArrayC(dataLength, subData); |
51 |
} |
} |
52 |
|
|