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

Contents of /yoda/techmodel/CalibTrk2Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.0 - (show annotations) (download)
Tue Sep 21 20:50:54 2004 UTC (20 years, 2 months ago) by kusanagi
Branch: MAIN
Changes since 1.6: +2 -2 lines
Major release

1 /** @file
2 * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v $
3 * $Id: CalibTrk2Reader.cpp,v 1.6 2004/09/21 20:24:33 kusanagi Exp $
4 * $Author: kusanagi $
5 *
6 * Implementation of the LogReader class.
7 * ToBeDone:
8 * Control the CRC for the entire data Packet not just for single records
9 */
10
11 #define UINT unsigned int
12 #define BYTE unsigned char
13 #include <string>
14 #include <log4cxx/logger.h>
15 extern "C" {
16 #include "CRC.h"
17 //Passo il path verso la il file temporaneo
18 extern void trkcalibpkt_(int*, char*);
19
20 //Struct per il passaggio di dati da e verso la chiamata fortran
21 extern struct {
22 int DAQmode[6];
23 int DSPnumber[6];
24 int calibnumber[6];
25 int ncalib_event[6];
26 int ped_l1[6];
27 int ped_l2[6];
28 int ped_l3[6];
29 int sig_l1[6];
30 int sig_l2[6];
31 int sig_l3[6];
32 int nbad_l1[6];
33 int nbad_l2[6];
34 int nbad_l3[6];
35 int cal_flag[6];
36 int checksum[6];
37 int DSPbad_par[6][3072];
38 float DSPped_par[6][3072];
39 float DSPsig_par[6][3072];
40 } trkcalib_;
41
42 #include <dirent.h>
43 }
44
45 #include <fstream>
46 #include "stdio.h"
47 #include "ReaderAlgorithms.h"
48
49 #include "event/CalibTrk2Event.h"
50
51 using namespace pamela;
52 using namespace pamela::techmodel;
53
54 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibTrk2Reader"));
55
56 /**
57 * Constructor.
58 */
59 CalibTrk2Reader::CalibTrk2Reader(void):
60 TechmodelAlgorithm(PacketType::CalibTrk2, "TechmodelCalibTrk2Reader") {
61 logger->debug(_T("Constructor"));
62 calibTrk2 = new CalibTrk2Event();
63 }
64
65 /**
66 * Get a string with the version info of the algorithm.
67 */
68 std::string CalibTrk2Reader::GetVersionInfo(void) const {
69 return
70 "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 1.6 2004/09/21 20:24:33 kusanagi Exp $\n";
71 }
72
73 /**
74 * Initialize the algorithm with a special run. This will initialize the
75 * event reader routines for all packet types.
76 */
77 void CalibTrk2Reader::Init(PamelaRun *run) {
78 logger->debug(_T("Initialize"));
79 SetInputStream(run);
80 run->WriteSubPacket(this, &calibTrk2, calibTrk2->Class());
81 }
82
83 /**
84 * Unpack the CalibTrk2 event from an input file.
85 */
86 void CalibTrk2Reader::RunEvent(int EventNumber, long int length) {
87 std::stringstream oss;
88 char *subData;
89 char eventCRC[2];
90 UINT16 subCRC; //CRC of the data
91 UINT16 readCRC; //CRC read from the end of the subpacket
92 long int dataLength;
93
94 //the 2 bytes subtracted belong to the final event CRC bytes
95 dataLength = length - (long int)2;
96
97 subData = new char[dataLength];
98 InputFile->read(subData, sizeof(unsigned char)*dataLength);
99 subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength);
100
101 //took the final CRC to compare it with the previous calculated CRC of the data
102 InputFile->read(eventCRC, sizeof(eventCRC));
103 readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF);
104
105 if (subCRC == readCRC){
106 int ERROR;
107
108 //Scrivo un file temporaneo per passarlo alla routine
109 //Speriamo di cambiare la routine per passargli un buffer.....
110 DIR *dirp;
111 std::string pathDir((char*)getenv("YODA_DATA"));
112 pathDir = pathDir + "/todatemp.dat";
113 FILE *pfile;
114 pfile = fopen((char*)pathDir.c_str(), "wb");
115 fwrite(subData, 1, dataLength, pfile);
116 fclose(pfile);
117
118 //Call to the FORTRAN routin that unpack tracker events
119 trkcalibpkt_(&ERROR, (char*)pathDir.c_str());
120
121 //delete the temporary file
122 remove((char*)pathDir.c_str());
123
124 //Store the unpacked data
125 memcpy(calibTrk2->DAQmode, trkcalib_.DAQmode, sizeof(calibTrk2->DAQmode));
126 memcpy(calibTrk2->DSPnumber, trkcalib_.DSPnumber, sizeof(calibTrk2->DSPnumber));
127 memcpy(calibTrk2->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk2->calibnumber));
128 memcpy(calibTrk2->DSPnumber, trkcalib_.ncalib_event, sizeof(calibTrk2->ncalib_event));
129 memcpy(calibTrk2->ped_l1, trkcalib_.ped_l1, sizeof(calibTrk2->ped_l1));
130 memcpy(calibTrk2->ped_l2, trkcalib_.ped_l2, sizeof(calibTrk2->ped_l2));
131 memcpy(calibTrk2->ped_l3, trkcalib_.ped_l3, sizeof(calibTrk2->ped_l3));
132 memcpy(calibTrk2->sig_l1, trkcalib_.sig_l1, sizeof(calibTrk2->sig_l1));
133 memcpy(calibTrk2->sig_l2, trkcalib_.sig_l2, sizeof(calibTrk2->sig_l2));
134 memcpy(calibTrk2->sig_l3, trkcalib_.sig_l3, sizeof(calibTrk2->sig_l3));
135 memcpy(calibTrk2->nbad_l1, trkcalib_.nbad_l1, sizeof(calibTrk2->nbad_l1));
136 memcpy(calibTrk2->nbad_l2, trkcalib_.nbad_l2, sizeof(calibTrk2->nbad_l2));
137 memcpy(calibTrk2->nbad_l3, trkcalib_.nbad_l3, sizeof(calibTrk2->nbad_l3));
138 memcpy(calibTrk2->cal_flag, trkcalib_.cal_flag, sizeof(calibTrk2->cal_flag));
139
140 //--------have to invert array because of FORTRAN <-> C different management of the indexes
141 int tempBad_par[3072][6];
142 int tempPed_par[3072][6];
143 int tempSig_par[3072][6];
144 memcpy(tempBad_par,trkcalib_.DSPbad_par, sizeof(tempBad_par));
145 memcpy(tempPed_par,trkcalib_.DSPped_par, sizeof(tempPed_par));
146 memcpy(tempSig_par,trkcalib_.DSPsig_par, sizeof(tempSig_par));
147
148 for (int i = 0; i < 6; i++){
149 for (int j = 0; j < 3072; j++){
150 calibTrk2->DSPbad_par[i][j] = tempBad_par[j][i];
151 calibTrk2->DSPped_par[i][j] = tempPed_par[j][i];
152 calibTrk2->DSPsig_par[i][j] = tempSig_par[j][i];
153 }
154 }
155 //-----------------------------------------------------------------------------------------
156 oss.flush();
157 oss << "Fortran77 function trkcalibpkt error code = " << ERROR;
158 logger->warn(oss.str().c_str());
159 } else {
160 logger->debug(_T("Wrong CRC for CalibTrk2 Packet "));
161 }
162 delete [] subData;
163 }
164

  ViewVC Help
Powered by ViewVC 1.1.23