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