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

Annotation of /yoda/techmodel/CalibCalPulse1Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


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

1 kusanagi 1.1
2     // Implementation of the CalibCalPulse1Reader class.
3    
4    
5     #define UINT unsigned int
6     #define BYTE unsigned char
7     #include <string>
8 kusanagi 1.4 #include <log4cxx/logger.h>
9 kusanagi 1.1 extern "C" {
10     #include "CRC.h"
11     //Struct per il passaggio di dati da e verso la chiamata fortran
12     extern struct {
13     int IEV2;
14     int calped[4][11][96];
15     int calgood[4][11][96];
16     int calthr[4][11][6];
17     int calrms[4][11][96];
18     int calbase[4][11][6];
19     int calvar[4][11][6];
20     int calpuls[4][11][96];
21     } calib_;
22    
23     //external declaration of the Fortran function
24     void calpulse_(short[], long int*, int*);
25     }
26    
27     #include <fstream>
28     #include "stdio.h"
29     #include "ReaderAlgorithms.h"
30    
31     #include "event/CalibCalPulse1Event.h"
32    
33     using namespace pamela;
34     using namespace pamela::techmodel;
35    
36 kusanagi 1.4 static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPulse1Reader"));
37 kusanagi 1.1
38     /**
39     * Constructor.
40     */
41     CalibCalPulse1Reader::CalibCalPulse1Reader(void):
42     TechmodelAlgorithm(PacketType::CalibCalPulse1, "TechmodelCalibCalPulse1Reader") {
43 kusanagi 1.4 logger->debug(_T("Constructor"));
44 kusanagi 1.1 calibCalPulse1 = new CalibCalPulse1Event();
45     }
46    
47     /**
48     * Get a string with the version info of the algorithm.
49     */
50     std::string CalibCalPulse1Reader::GetVersionInfo(void) const {
51     return
52 kusanagi 2.0 "$Header: /home/cvsmanager/yoda/techmodel/CalibCalPulse1Reader.cpp,v 1.4 2004/09/21 20:24:33 kusanagi Exp $\n";
53 kusanagi 1.1 }
54    
55     /**
56     * Initialize the algorithm with a special run. This will initialize the
57     * event reader routines for all packet types.
58     */
59     void CalibCalPulse1Reader::Init(PamelaRun *run) {
60 kusanagi 1.4 logger->debug(_T("Initialize"));
61 kusanagi 1.1 SetInputStream(run);
62     run->WriteSubPacket(this, &calibCalPulse1, calibCalPulse1->Class());
63     }
64    
65     /**
66     * Unpack the CalibCalPulse1 event from an input file.
67     */
68     void CalibCalPulse1Reader::RunEvent(int EventNumber, long int length) {
69 kusanagi 1.4 std::stringstream oss;
70 kusanagi 1.3 char *packetData;
71 kusanagi 1.1 char CRCevent[2];
72     UINT16 calculatedCRC = 0; //calculated CRC
73     UINT16 readCRC = 0; //read CRC
74     long int dataLength;
75     int ERROR;
76    
77     dataLength = length - 2;
78 kusanagi 1.3 packetData = new char[dataLength];
79 kusanagi 1.1 InputFile->read(packetData, sizeof(packetData));
80     InputFile->read(CRCevent, sizeof(CRCevent));
81    
82     calculatedCRC = CM_Compute_CRC16(0, (BYTE*)packetData, dataLength);
83     readCRC = ((UINT16)(CRCevent[0]<<8)&0xFF00) + ((UINT16)(CRCevent[1])&0x00FF);
84    
85     if (calculatedCRC == readCRC) {
86 kusanagi 1.2 calpulse_((short*)packetData, &dataLength, &ERROR);
87     if (ERROR != 0) {
88     char *errmsg;
89     switch (ERROR){
90     case 1: errmsg = "CALORIMETER NOT FOUND";
91     }
92 kusanagi 1.4 oss.flush();
93     oss << "Fortran77 function calpulse error code = " << ERROR
94     << errmsg;
95     logger->warn(oss.str().c_str());
96 kusanagi 1.2 } else {
97     //Store the unpacked data
98     calibCalPulse1->IEV2 = calib_.IEV2;
99     //--------have to invert array because of FORTRAN <-> C different management of the indexes
100     int tempCalped[96][11][4];
101     int tempCalgood[96][11][4];
102     int tempCalthr[6][11][4];
103     int tempCalrms[96][11][4];
104     int tempCalbase[6][11][4];
105     int tempCalvar[6][11][4];
106     int tempCalpuls[96][11][4];
107    
108     memcpy(tempCalped, calib_.calped, sizeof(tempCalped));
109     memcpy(tempCalgood, calib_.calgood, sizeof(tempCalgood));
110     memcpy(tempCalthr, calib_.calthr, sizeof(tempCalthr));
111     memcpy(tempCalrms, calib_.calrms, sizeof(tempCalrms));
112     memcpy(tempCalbase, calib_.calbase, sizeof(tempCalbase));
113     memcpy(tempCalvar, calib_.calvar, sizeof(tempCalvar));
114     memcpy(tempCalpuls, calib_.calpuls, sizeof(tempCalpuls));
115    
116     for (int i = 0; i < 4; i++){
117     for (int j = 0; j <11; j++){
118     for (int z = 0; z < 96; z++){
119     calibCalPulse1->calped[i][j][z] = tempCalped[z][j][i];
120     calibCalPulse1->calgood[i][j][z] = tempCalgood[z][j][i];
121     calibCalPulse1->calrms[i][j][z] = tempCalrms[z][j][i];
122     calibCalPulse1->calpuls[i][j][z] = tempCalpuls[z][j][i];
123     }
124     }
125 kusanagi 1.1 }
126    
127 kusanagi 1.2 for (int i = 0; i < 4; i++){
128     for (int j = 0; j <11; j++){
129     for (int z = 0; z < 6; z++){
130     calibCalPulse1->calthr[i][j][z] = tempCalthr[z][j][i];
131     calibCalPulse1->calbase[i][j][z] = tempCalbase[z][j][i];
132     calibCalPulse1->calvar[i][j][z] = tempCalvar[z][j][i];
133     }
134     }
135 kusanagi 1.1 }
136 kusanagi 1.2 //-----------------------------------------------------------------------------------------
137 kusanagi 1.1 }
138     } else {
139 kusanagi 1.4 logger->warn(_T("The test of calculated CRC with one wrote on file FAILED!!"));
140 kusanagi 1.1 }
141 kusanagi 1.3 delete [] packetData;
142 kusanagi 1.1 }
143    

  ViewVC Help
Powered by ViewVC 1.1.23