1 |
kusanagi |
5.1 |
/** @file |
2 |
kusanagi |
5.2 |
* $Author: kusanagi $ |
3 |
mocchiut |
6.1 |
* $Date: 2006/02/07 17:11:09 $ |
4 |
|
|
* $Revision: 6.0 $ |
5 |
kusanagi |
5.1 |
* |
6 |
|
|
* Implementation of the Ac2InitReader class. |
7 |
|
|
*/ |
8 |
kusanagi |
2.1 |
|
9 |
|
|
#include "ReaderAlgorithms.h" |
10 |
|
|
|
11 |
|
|
using namespace pamela::techmodel; |
12 |
|
|
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.Ac2InitReader")); |
13 |
|
|
|
14 |
|
|
/** |
15 |
|
|
* Constructor. |
16 |
|
|
*/ |
17 |
|
|
Ac2InitReader::Ac2InitReader(void): |
18 |
|
|
TechmodelAlgorithm(PacketType::Ac2Init, "Ac2InitReader") { |
19 |
|
|
logger->debug(_T("Constructor")); |
20 |
|
|
ac2Init = new Ac2InitEvent(); |
21 |
|
|
} |
22 |
|
|
|
23 |
|
|
/** |
24 |
|
|
* Get a string with the version info of the algorithm. |
25 |
|
|
*/ |
26 |
|
|
std::string Ac2InitReader::GetVersionInfo(void) const { |
27 |
|
|
return |
28 |
kusanagi |
5.3 |
"$Trailer: /home/cvsmanager/yoda/techmodel/Ac2InitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n"; |
29 |
kusanagi |
2.1 |
} |
30 |
|
|
|
31 |
|
|
/** |
32 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
33 |
|
|
* event reader routines for all packet types. |
34 |
|
|
*/ |
35 |
|
|
void Ac2InitReader::Init(PamelaRun *run) { |
36 |
|
|
logger->debug(_T("Initialize")); |
37 |
|
|
SetInputStream(run); |
38 |
|
|
run->WriteSubPacket(this, &ac2Init, ac2Init->Class()); |
39 |
|
|
} |
40 |
|
|
|
41 |
|
|
/** |
42 |
|
|
* Unpack the Ac2Init event from an input file. |
43 |
kusanagi |
5.1 |
* The CPU does not add any CRC control at the packet end. |
44 |
|
|
* @param EventNumber |
45 |
|
|
* @param dataLength |
46 |
kusanagi |
2.1 |
*/ |
47 |
kusanagi |
5.1 |
void Ac2InitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){ |
48 |
|
|
char subData[dataLength]; |
49 |
mocchiut |
6.1 |
memset(subData, 0, dataLength*sizeof(char)); |
50 |
kusanagi |
5.1 |
InputFile->read(subData, sizeof(subData)); |
51 |
|
|
ac2Init->ac2InitData = new TArrayC(dataLength, subData); |
52 |
kusanagi |
2.1 |
} |
53 |
|
|
|