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