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 |
|
9 |
#include "ReaderAlgorithms.h" |
10 |
|
11 |
using namespace pamela::techmodel; |
12 |
|
13 |
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrkInitReader")); |
14 |
|
15 |
/** |
16 |
* Constructor. |
17 |
*/ |
18 |
TrkInitReader::TrkInitReader(void): |
19 |
TechmodelAlgorithm(PacketType::TrkInit, "TechmodelTrkInitReader") { |
20 |
logger->debug(_T("Constructor")); |
21 |
trkInit = new TrkInitEvent(); |
22 |
} |
23 |
|
24 |
/** |
25 |
* Get a string with the version info of the algorithm. |
26 |
*/ |
27 |
std::string TrkInitReader::GetVersionInfo(void) const { |
28 |
return |
29 |
"$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 |
/** |
33 |
* Initialize the algorithm with a special run. This will initialize the |
34 |
* event reader routines for all packet types. |
35 |
*/ |
36 |
void TrkInitReader::Init(PamelaRun *run) { |
37 |
SetInputStream(run); |
38 |
run->WriteSubPacket(this, &trkInit, trkInit->Class()); |
39 |
} |
40 |
|
41 |
/** |
42 |
* 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 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 |
|