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

Annotation of /yoda/techmodel/CalibCalPedReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.1 - (hide annotations) (download)
Sun Oct 17 12:28:38 2004 UTC (20 years, 1 month ago) by kusanagi
Branch: MAIN
Changes since 2.0: +1 -2 lines
*** empty log message ***

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

  ViewVC Help
Powered by ViewVC 1.1.23