/[PAMELA software]/yoda/techmodel/Calib2_Ac1Reader.cpp
ViewVC logotype

Annotation of /yoda/techmodel/Calib2_Ac1Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.2 - (hide annotations) (download)
Tue May 30 19:10:02 2006 UTC (18 years, 6 months ago) by kusanagi
Branch: MAIN
CVS Tags: YODA6_3/10, YODA6_3/06, YODA6_3/04, YODA6_3/05, YODA6_3/07, YODA6_3/00, YODA6_3/01, YODA6_3/02, YODA6_3/03, YODA6_3/08, YODA6_3/09
Changes since 6.1: +2 -2 lines
Major update.
All the packet officially produced by PAMELA are implemented and unpacked.
The RegistryEvent Packet has been removed and put into another library.
New version, releasd by D.Campana, of tofunpack.

1 kusanagi 2.1 /** @file
2     * $Source: /home/cvsmanager/yoda/techmodel/Calib2_Ac1Reader.cpp,v $
3 kusanagi 6.2 * $Id: Calib2_Ac1Reader.cpp,v 6.1 2006/05/30 19:10:01 kusanagi Exp $
4 kusanagi 6.0 * $Author: kusanagi $
5 kusanagi 2.1 *
6     * Implementation of the Calib2_Ac1Reader 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 kusanagi 2.8 extern int ACcalib(int length, unsigned char* calibpointer, struct calibstruct *calibpointer);
17 kusanagi 2.1 }
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_Ac1Reader"));
25    
26     /**
27     * Constructor.
28     */
29     Calib2_Ac1Reader::Calib2_Ac1Reader(void):
30     TechmodelAlgorithm(PacketType::Calib2_Ac1, "Calib2_Ac1") {
31     logger->debug(_T("Constructor"));
32     calib2_Ac1 = new Calib2_Ac1Event();
33     }
34    
35     /**
36     * Get a string with the version info of the algorithm.
37     */
38     std::string Calib2_Ac1Reader::GetVersionInfo(void) const {
39 kusanagi 6.2 return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac1Reader.cpp,v 6.1 2006/05/30 19:10:01 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_Ac1Reader::Init(PamelaRun *run) {
47     logger->debug(_T("Initialize"));
48     SetInputStream(run);
49     run->WriteSubPacket(this, &calib2_Ac1, calib2_Ac1->Class());
50     }
51    
52     /**
53     * Unpack the CalibAc event from an input file.
54     */
55     void Calib2_Ac1Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
56 kusanagi 2.6 char *subData = new char[dataLength];
57 kusanagi 2.8 struct calibstruct output = {0};
58 kusanagi 2.6
59 kusanagi 2.5 InputFile->read(subData, sizeof(unsigned char)*dataLength);
60 kusanagi 2.6
61 kusanagi 2.8 calib2_Ac1->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output);
62     memcpy(calib2_Ac1->header, output.header, sizeof(output.header));
63     memcpy(calib2_Ac1->status, output.status, sizeof(output.status));
64     memcpy(calib2_Ac1->temp, output.temp, sizeof(output.temp));
65     memcpy(calib2_Ac1->DAC1, output.DAC1, sizeof(output.DAC1));
66     memcpy(calib2_Ac1->DAC2, output.DAC2, sizeof(output.DAC2));
67     memcpy(calib2_Ac1->regist, output.regist, sizeof(output.regist));
68     memcpy(calib2_Ac1->time, output.time, sizeof(output.time));
69     calib2_Ac1->n_tr = output.n_tr;
70     memcpy(calib2_Ac1->hitmap_tr, output.hitmap_tr, sizeof(output.hitmap_tr));
71     memcpy(calib2_Ac1->curve1, output.curve1, sizeof(output.curve1));
72     memcpy(calib2_Ac1->curve2, output.curve2, sizeof(output.curve2));
73     calib2_Ac1->iCRC = output.iCRC;
74     calib2_Ac1->tail = output.tail;
75     calib2_Ac1->CRC = output.CRC;
76     calib2_Ac1->CRCcheck = output.CRCcheck;
77    
78 kusanagi 2.1 //delete [] subData;
79     }

  ViewVC Help
Powered by ViewVC 1.1.23