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