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

Diff of /yoda/techmodel/CalibCalPulse2Reader.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2.0 by kusanagi, Tue Sep 21 20:50:54 2004 UTC revision 2.1 by kusanagi, Fri Dec 3 22:08:00 2004 UTC
# Line 10  Line 10 
10  extern "C" {  extern "C" {
11  #include "CRC.h"    #include "CRC.h"  
12      //Struct per il passaggio di dati da e verso la chiamata fortran      //Struct per il passaggio di dati da e verso la chiamata fortran
13      extern struct {  extern struct {
14          int IEV2;          int   iev;
15          int calped[4][11][96];          int   pstwerr[4];
16          int calgood[4][11][96];          float pperror[4];
17          int calthr[4][11][6];          float calpuls[4][11][96];
18          int calrms[4][11][96];      } calpul_;
         int calbase[4][11][6];  
         int calvar[4][11][6];  
         int calpuls[4][11][96];  
     } calib_;  
19            
20      //external declaration of the Fortran function      //external declaration of the Fortran function
21      void calpulse_(short[], long int*, int*);      void calpulse_(char*, long int*, int*);
22  }  }
23  #include <fstream>  #include <fstream>
24  #include "stdio.h"  #include "stdio.h"
# Line 49  CalibCalPulse2Reader::CalibCalPulse2Read Line 45  CalibCalPulse2Reader::CalibCalPulse2Read
45   */   */
46  std::string CalibCalPulse2Reader::GetVersionInfo(void) const {  std::string CalibCalPulse2Reader::GetVersionInfo(void) const {
47    return    return
48      "$Header: /home/cvsmanager/yoda/techmodel/CalibCalPulse2Reader.cpp,v 1.4 2004/09/21 20:24:33 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/CalibCalPulse2Reader.cpp,v 2.0 2004/09/21 20:50:54 kusanagi Exp $\n";
49  }  }
50    
51  /**  /**
# Line 65  void CalibCalPulse2Reader::Init(PamelaRu Line 61  void CalibCalPulse2Reader::Init(PamelaRu
61  /**  /**
62   * Unpack the CalibCalPulse2 event from an input file.   * Unpack the CalibCalPulse2 event from an input file.
63   */   */
64  void CalibCalPulse2Reader::RunEvent(int EventNumber, long int length) {  void CalibCalPulse2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
65      std::stringstream oss;            std::stringstream oss;      
66      char        *packetData;      char        packetData[dataLength];
     char        CRCevent[2];  
     UINT16      calculatedCRC    = 0;   //calculated CRC  
     UINT16      readCRC          = 0;   //read CRC  
     long int    dataLength;  
67      int         ERROR;      int         ERROR;
   
     dataLength = length - 2;  
     packetData = new char[dataLength];  
68      InputFile->read(packetData, sizeof(packetData));      InputFile->read(packetData, sizeof(packetData));
69      InputFile->read(CRCevent, sizeof(CRCevent));      calpulse_(packetData, &dataLength, &ERROR);
70        if (ERROR != 0) {
71      calculatedCRC = CM_Compute_CRC16(0, (BYTE*)packetData, dataLength);          char *errmsg;
72      readCRC = ((UINT16)(CRCevent[0]<<8)&0xFF00) + ((UINT16)(CRCevent[1])&0x00FF);          switch (ERROR){
73                    case 1: errmsg = "CALORIMETER NOT FOUND";
74      if (calculatedCRC == readCRC) {          }
75          calpulse_((short*)packetData, &dataLength, &ERROR);          oss.str("");
76          if (ERROR != 0) {          oss << "Fortran77 function calpulse error code = " << ERROR
77              char *errmsg;              <<  "\n" <<errmsg;
78              switch (ERROR){          logger->warn(oss.str().c_str());
79                  case 1: errmsg = "CALORIMETER NOT FOUND";      } else {
80              }         //Store the unpacked data
81              oss.flush();          calibCalPulse2->iev = calpul_.iev;
82              oss << "Fortran77 function calpulse error code = " << ERROR          memcpy(calibCalPulse2->pstwerr, calpul_.pstwerr, sizeof(calibCalPulse2->pstwerr));
83                  <<  errmsg;          memcpy(calibCalPulse2->pperror, calpul_.pperror, sizeof(calibCalPulse2->pperror));
84              logger->warn(oss.str().c_str());      //--------have to invert array because of FORTRAN <-> C different management of the indexes
85          } else {          float tempCalpuls[96][11][4];
86            //Store the unpacked data          memcpy(tempCalpuls, calpul_.calpuls, sizeof(tempCalpuls));
87              calibCalPulse2->IEV2 = calib_.IEV2;          for (int i = 0; i < 4; i++){
88          //--------have to invert array because of FORTRAN <-> C different management of the indexes              for (int j = 0; j <11; j++){
89              int tempCalped[96][11][4];                  for (int z = 0; z < 96; z++){
90              int tempCalgood[96][11][4];                      calibCalPulse2->calpuls[i][j][z]  = tempCalpuls[z][j][i];
             int tempCalthr[6][11][4];  
             int tempCalrms[96][11][4];  
             int tempCalbase[6][11][4];  
             int tempCalvar[6][11][4];  
             int tempCalpuls[96][11][4];  
   
             memcpy(tempCalped,  calib_.calped,  sizeof(tempCalped));  
             memcpy(tempCalgood, calib_.calgood, sizeof(tempCalgood));  
             memcpy(tempCalthr,  calib_.calthr,  sizeof(tempCalthr));  
             memcpy(tempCalrms,  calib_.calrms,  sizeof(tempCalrms));  
             memcpy(tempCalbase, calib_.calbase, sizeof(tempCalbase));  
             memcpy(tempCalvar,  calib_.calvar,  sizeof(tempCalvar));  
             memcpy(tempCalpuls, calib_.calpuls, sizeof(tempCalpuls));  
   
             for (int i = 0; i < 4; i++){  
                 for (int j = 0; j <11; j++){  
                     for (int z = 0; z < 96; z++){  
                         calibCalPulse2->calped[i][j][z]    = tempCalped[z][j][i];  
                         calibCalPulse2->calgood[i][j][z]   = tempCalgood[z][j][i];  
                         calibCalPulse2->calrms[i][j][z]    = tempCalrms[z][j][i];  
                         calibCalPulse2->calpuls[i][j][z]    = tempCalpuls[z][j][i];  
                     }  
                 }  
             }  
   
             for (int i = 0; i < 4; i++){  
                 for (int j = 0; j <11; j++){  
                     for (int z = 0; z < 6; z++){  
                         calibCalPulse2->calthr[i][j][z]    = tempCalthr[z][j][i];  
                         calibCalPulse2->calbase[i][j][z]   = tempCalbase[z][j][i];  
                         calibCalPulse2->calvar[i][j][z]    = tempCalvar[z][j][i];  
                     }  
91                  }                  }
92              }              }
         //-----------------------------------------------------------------------------------------  
93          }          }
94      } else {     //-----------------------------------------------------------------------------------------
             logger->warn(_T("The test of calculated CRC with one wrote on file FAILED!!"));  
95      }      }
     delete [] packetData;  
96  }  }
97    

Legend:
Removed from v.2.0  
changed lines
  Added in v.2.1

  ViewVC Help
Powered by ViewVC 1.1.23