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

Annotation of /yoda/techmodel/CalibCalPedReader.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Thu Aug 19 15:24:46 2004 UTC (20 years, 3 months ago) by kusanagi
Branch: MAIN
Changes since 1.3: +50 -28 lines
*** empty log message ***

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

  ViewVC Help
Powered by ViewVC 1.1.23