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

Annotation of /yoda/techmodel/Calib2_Ac2Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6.2 - (hide annotations) (download)
Tue May 30 19:10:03 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_Ac2Reader.cpp,v $
3 kusanagi 6.2 * $Id: Calib2_Ac2Reader.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_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 kusanagi 6.2 return "$Header: /home/cvsmanager/yoda/techmodel/Calib2_Ac2Reader.cpp,v 6.1 2006/05/30 19:10:01 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 kusanagi 2.8 struct calibstruct output = {0};
56 kusanagi 2.6
57 kusanagi 2.1 InputFile->read(subData, sizeof(unsigned char)*dataLength);
58 kusanagi 2.6
59 kusanagi 2.8 calib2_Ac2->ERROR = ACcalib(dataLength, (unsigned char*)subData, &output);
60     memcpy(calib2_Ac2->header, output.header, sizeof(output.header));
61     memcpy(calib2_Ac2->status, output.status, sizeof(output.status));
62     memcpy(calib2_Ac2->temp, output.temp, sizeof(output.temp));
63     memcpy(calib2_Ac2->DAC1, output.DAC1, sizeof(output.DAC1));
64     memcpy(calib2_Ac2->DAC2, output.DAC2, sizeof(output.DAC2));
65     memcpy(calib2_Ac2->regist, output.regist, sizeof(output.regist));
66     memcpy(calib2_Ac2->time, output.time, sizeof(output.time));
67     calib2_Ac2->n_tr = output.n_tr;
68     memcpy(calib2_Ac2->hitmap_tr, output.hitmap_tr, sizeof(output.hitmap_tr));
69     memcpy(calib2_Ac2->curve1, output.curve1, sizeof(output.curve1));
70     memcpy(calib2_Ac2->curve2, output.curve2, sizeof(output.curve2));
71     calib2_Ac2->iCRC = output.iCRC;
72     calib2_Ac2->tail = output.tail;
73     calib2_Ac2->CRC = output.CRC;
74     calib2_Ac2->CRCcheck = output.CRCcheck;
75 kusanagi 2.5
76 kusanagi 2.1 //delete [] subData;
77     }

  ViewVC Help
Powered by ViewVC 1.1.23