1 |
kusanagi |
2.1 |
|
2 |
|
|
// Implementation of the NdInitReader class. |
3 |
|
|
|
4 |
|
|
|
5 |
|
|
#define UINT unsigned int |
6 |
|
|
#define BYTE unsigned char |
7 |
|
|
#include <string> |
8 |
|
|
#include <log4cxx/logger.h> |
9 |
|
|
extern "C" { |
10 |
|
|
#include "CRC.h" |
11 |
|
|
} |
12 |
|
|
|
13 |
|
|
#include <fstream> |
14 |
|
|
#include "stdio.h" |
15 |
|
|
#include "ReaderAlgorithms.h" |
16 |
|
|
|
17 |
|
|
|
18 |
|
|
using namespace pamela; |
19 |
|
|
using namespace pamela::techmodel; |
20 |
|
|
|
21 |
|
|
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.NdInitReader")); |
22 |
|
|
|
23 |
|
|
/** |
24 |
|
|
* Constructor. |
25 |
|
|
*/ |
26 |
|
|
NdInitReader::NdInitReader(void): |
27 |
|
|
TechmodelAlgorithm(PacketType::NdInit, "TechmodelAcInitReader") { |
28 |
|
|
logger->debug(_T("Constructor")); |
29 |
|
|
ndInit = new NdInitEvent(); |
30 |
|
|
} |
31 |
|
|
|
32 |
|
|
/** |
33 |
|
|
* Get a string with the version info of the algorithm. |
34 |
|
|
*/ |
35 |
|
|
std::string NdInitReader::GetVersionInfo(void) const { |
36 |
|
|
return |
37 |
|
|
"$Trailer: /home/cvsmanager/yoda/techmodel/NdInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n"; |
38 |
|
|
} |
39 |
|
|
|
40 |
|
|
/** |
41 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
42 |
|
|
* event reader routines for all packet types. |
43 |
|
|
*/ |
44 |
|
|
void NdInitReader::Init(PamelaRun *run) { |
45 |
|
|
logger->debug(_T("Initialize")); |
46 |
|
|
SetInputStream(run); |
47 |
|
|
run->WriteSubPacket(this, &ndInit, ndInit->Class()); |
48 |
|
|
} |
49 |
|
|
|
50 |
|
|
/** |
51 |
|
|
* Unpack the AcInit event from an input file. |
52 |
|
|
*/ |
53 |
|
|
void NdInitReader::RunEvent(int EventNumber, long int length) { |
54 |
kusanagi |
2.2 |
/* |
55 |
|
|
rec = new NeutronRecord(); //aggiungo un nuovo NeutronRecord all'evento |
56 |
|
|
rec->upperTrig = (((BYTE)data[lenght-offset])>>4); |
57 |
|
|
rec->bottomTrig = (((BYTE)data[lenght-offset])&0x0F); |
58 |
|
|
rec->upperBack = (((BYTE)data[lenght-offset+1])>>4); |
59 |
|
|
rec->bottomBack = (((BYTE)data[lenght-offset+1])&0x0F); |
60 |
|
|
*/ |
61 |
kusanagi |
2.1 |
} |
62 |
|
|
|