1 |
kusanagi |
2.1 |
/** @file |
2 |
|
|
* $Source: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v $ |
3 |
kusanagi |
2.3 |
* $Id: Calib2_Ac2Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $ |
4 |
kusanagi |
2.1 |
* $Author: kusanagi $ |
5 |
|
|
* |
6 |
|
|
* Implementation of the Calib2_Ac2Reader class. |
7 |
|
|
*/ |
8 |
|
|
|
9 |
|
|
#include <string> |
10 |
|
|
#include <log4cxx/logger.h> |
11 |
|
|
#include <fstream> |
12 |
|
|
#include "stdio.h" |
13 |
|
|
extern "C" { |
14 |
|
|
#include "CRC.h" |
15 |
|
|
#include "forroutines/anticounter/AC.h" |
16 |
|
|
extern int ACcalib(int length, unsigned char* calibpointer, struct calibstruct* calibpointer); |
17 |
|
|
} |
18 |
|
|
|
19 |
|
|
#include "ReaderAlgorithms.h" |
20 |
|
|
|
21 |
|
|
using namespace pamela; |
22 |
|
|
using namespace pamela::techmodel; |
23 |
|
|
|
24 |
|
|
static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.Calib2_Ac2Reader")); |
25 |
|
|
|
26 |
|
|
/** |
27 |
|
|
* Constructor. |
28 |
|
|
*/ |
29 |
|
|
Calib2_Ac2Reader::Calib2_Ac2Reader(void): |
30 |
|
|
TechmodelAlgorithm(PacketType::Calib2_Ac2, "Calib2_Ac2") { |
31 |
|
|
logger->debug(_T("Constructor")); |
32 |
|
|
calib2_Ac2 = new Calib2_Ac2Event(); |
33 |
|
|
} |
34 |
|
|
|
35 |
|
|
/** |
36 |
|
|
* Get a string with the version info of the algorithm. |
37 |
|
|
*/ |
38 |
|
|
std::string Calib2_Ac2Reader::GetVersionInfo(void) const { |
39 |
kusanagi |
2.3 |
return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 2.2 2004/12/20 14:15:13 kusanagi Exp $\n"; |
40 |
kusanagi |
2.1 |
} |
41 |
|
|
|
42 |
|
|
/** |
43 |
|
|
* Initialize the algorithm with a special run. This will initialize the |
44 |
|
|
* event reader routines for all packet types. |
45 |
|
|
*/ |
46 |
|
|
void Calib2_Ac2Reader::Init(PamelaRun *run) { |
47 |
|
|
logger->debug(_T("Initialize")); |
48 |
|
|
SetInputStream(run); |
49 |
|
|
run->WriteSubPacket(this, &calib2_Ac2, calib2_Ac2->Class()); |
50 |
|
|
} |
51 |
|
|
|
52 |
|
|
/** |
53 |
|
|
* Unpack the CalibAc event from an input file. |
54 |
|
|
*/ |
55 |
|
|
void Calib2_Ac2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){ |
56 |
|
|
char subData[dataLength]; |
57 |
kusanagi |
2.3 |
struct calibstruct output[2] = {0}; |
58 |
kusanagi |
2.1 |
int ERROR; |
59 |
|
|
|
60 |
kusanagi |
2.2 |
|
61 |
kusanagi |
2.1 |
InputFile->read(subData, sizeof(unsigned char)*dataLength); |
62 |
kusanagi |
2.3 |
calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, output); |
63 |
kusanagi |
2.2 |
for(int i = 0; i<2; i++){ |
64 |
|
|
memcpy(calib2_Ac2->header[i], output[i].header, sizeof(output[i].header)); |
65 |
|
|
memcpy(calib2_Ac2->status[i], output[i].status, sizeof(output[i].status)); |
66 |
|
|
memcpy(calib2_Ac2->temp[i], output[i].temp, sizeof(output[i].temp)); |
67 |
|
|
memcpy(calib2_Ac2->DAC1[i], output[i].DAC1, sizeof(output[i].DAC1)); |
68 |
|
|
memcpy(calib2_Ac2->DAC2[i], output[i].DAC2, sizeof(output[i].DAC2)); |
69 |
|
|
memcpy(calib2_Ac2->regist[i], output[i].regist, sizeof(output[i].regist)); |
70 |
|
|
memcpy(calib2_Ac2->time[i], output[i].time, sizeof(output[i].time)); |
71 |
|
|
calib2_Ac2->n_tr[i] = output[i].n_tr; |
72 |
|
|
memcpy(calib2_Ac2->hitmap_tr[i], output[i].hitmap_tr, sizeof(output[i].hitmap_tr)); |
73 |
|
|
memcpy(calib2_Ac2->curve1[i], output[i].curve1, sizeof(output[i].curve1)); |
74 |
|
|
memcpy(calib2_Ac2->curve2[i], output[i].curve2, sizeof(output[i].curve2)); |
75 |
|
|
calib2_Ac2->iCRC[i] = output[i].iCRC; |
76 |
|
|
calib2_Ac2->tail[i] = output[i].tail; |
77 |
|
|
calib2_Ac2->CRC[i] = output[i].CRC; |
78 |
|
|
} |
79 |
kusanagi |
2.1 |
|
80 |
|
|
//delete [] subData; |
81 |
|
|
} |