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

Diff of /yoda/techmodel/CalibCalPedReader.cpp

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

revision 1.2 by kusanagi, Thu Jul 8 12:31:42 2004 UTC revision 4.4 by kusanagi, Sat May 28 10:44:10 2005 UTC
# Line 1  Line 1 
1  /** @file  #include <log4cxx/logger.h>
  * $Source: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v $  
  * $Id: CalibCalPedReader.cpp,v 1.1 2004/07/06 14:07:27 kusanagi Exp $  
  * $Author: kusanagi $  
  *  
  * Implementation of the LogReader class.  
 * ToBeDone:  
 * Control the CRC for the entire data Packet not just for single records  
  */  
   
 //#define UINT unsigned int  
 #define BYTE  unsigned char  
 #include <string>  
 #include <log4cpp/Category.hh>  
2  #include <fstream>  #include <fstream>
3  #include "stdio.h"  
4  extern "C" {  extern "C" {
5      
6      //Struct per il passaggio di dati da e verso la chiamata fortran      //Struct per il passaggio di dati da e verso la chiamata fortran
7      extern struct {      extern struct {
8          int IEV2;          int   iev;
9          int calped[96][11][4];          int   cstwerr[4];
10          int calgood[96][11][4];          float cperror[4];
11          int calthr[96][11][4];          float calped[4][11][96];
12          int calrms[96][11][4];          float calgood[4][11][96];
13          int calbase[96][11][4];          float calthr[4][11][6];
14          int calvar[96][11][4];          float calrms[4][11][96];
15          int calpuls[96][11][4];          float calbase[4][11][6];
16            float calvar[4][11][6];
17            //float calpuls[4][11][96];
18      } calib_;      } calib_;
       
19      //external declaration of the Fortran function      //external declaration of the Fortran function
20  //    void calpedestal_(short[], int, int*);      void calpedestal_(char*, long int*, int*);
21  }  }
22    
23  #include "ReaderAlgorithms.h"  #include "ReaderAlgorithms.h"
# Line 38  extern "C" { Line 26  extern "C" {
26  using namespace pamela;  using namespace pamela;
27  using namespace pamela::techmodel;  using namespace pamela::techmodel;
28    
29  static log4cpp::Category& cat = log4cpp::Category::getInstance("pamela.techmodel.CalibCalPedReader");    static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.CalibCalPedReader"));
30    
31  /**  /**
32   * Constructor.   * Constructor.
33   */   */
34  CalibCalPedReader::CalibCalPedReader(void):  CalibCalPedReader::CalibCalPedReader(void):
35    TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") {    TechmodelAlgorithm(PacketType::Log, "TechmodelCalibCalPedReader") {
36    cat <<  log4cpp::Priority::DEBUG    logger->debug(_T("Constructor"));
37        <<  "Constructor "    calibCalPed = new CalibCalPedEvent();
       <<  "\n " << log4cpp::CategoryStream::ENDLINE;  
   CalibCalPed = new CalibCalPedEvent();  
38  }  }
39    
40  /**  /**
# Line 56  CalibCalPedReader::CalibCalPedReader(voi Line 42  CalibCalPedReader::CalibCalPedReader(voi
42   */   */
43  std::string CalibCalPedReader::GetVersionInfo(void) const {  std::string CalibCalPedReader::GetVersionInfo(void) const {
44    return    return
45      "$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 1.1 2004/07/06 14:07:27 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/CalibCalPedReader.cpp,v 4.1 2005/05/28 08:02:48 kusanagi Exp $\n";
46  }  }
47    
48  /**  /**
# Line 64  std::string CalibCalPedReader::GetVersio Line 50  std::string CalibCalPedReader::GetVersio
50   * event reader routines for all packet types.   * event reader routines for all packet types.
51   */   */
52  void CalibCalPedReader::Init(PamelaRun *run) {  void CalibCalPedReader::Init(PamelaRun *run) {
53      logger->debug(_T("Initialize"));
54    SetInputStream(run);    SetInputStream(run);
55    run->WriteSubPacket(this, &CalibCalPed, CalibCalPed->Class());    run->WriteSubPacket(this, &calibCalPed, calibCalPed->Class());
56  }  }
57    
58  /**  /**
59   * Unpack the CalibCalPed event from an input file.   * Unpack the CalibCalPed event from an input file.
60   */   */
61  void CalibCalPedReader::RunEvent(int EventNumber, long int length) {  void CalibCalPedReader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
62        stringstream oss;      
63    char     *subData;      int         ERROR;
64    long int  dataLength;      char packetData[dataLength];
65    int ERROR;      InputFile->read(packetData, sizeof(packetData));
66      
67      //the 2 bytes subtracted belong to the final event CRC bytes      calpedestal_((char*)packetData, &dataLength, &ERROR);
68      dataLength = length - (long int)2;  
69        calibCalPed->unpackError = ERROR;
70      subData = new char[dataLength];      if (ERROR != 0) {
71      InputFile->read(subData, sizeof(unsigned char)*dataLength);          char *errmsg;
72            switch (ERROR){
73      //Skip the last two crc bytes already checked in UnpackPscu              case 1: errmsg = "CALORIMETER NOT FOUND";
74      //This part have to be refactored!!!! too bad......          }
75      InputFile->seekg((long int)2, std::ios::cur);          oss.str("");
76                          oss << "Fortran77 function calpedestal error code = " << ERROR
77      //Chiamata alla funzione fortran per la lettura dei piedistalli              <<  " " << errmsg;
78    //  calpedestal_((short*)subData, dataLength, &ERROR);          logger->warn(oss.str().c_str());
79          cat <<  log4cpp::Priority::ERROR      } else {
80              <<  "Fortran77 function calpedestal error code = " << ERROR        //Store the unpacked data
81              <<  "\n " << log4cpp::CategoryStream::ENDLINE;          calibCalPed->iev = calib_.iev;
82      free(subData);          memcpy(calibCalPed->cstwerr, calib_.cstwerr, sizeof(calibCalPed->cstwerr));
83    }          memcpy(calibCalPed->cperror, calib_.cperror, sizeof(calibCalPed->cperror));
84        //--------have to invert array because of FORTRAN <-> C different management of the indexes
85            float tempCalped[96][11][4];
86            float tempCalgood[96][11][4];
87            float tempCalthr[6][11][4];
88            float tempCalrms[96][11][4];
89            float tempCalbase[6][11][4];
90            float tempCalvar[6][11][4];
91            //float tempCalpuls[96][11][4];
92    
93            memcpy(tempCalped,  calib_.calped,  sizeof(tempCalped));
94            memcpy(tempCalgood, calib_.calgood, sizeof(tempCalgood));
95            memcpy(tempCalthr,  calib_.calthr,  sizeof(tempCalthr));
96            memcpy(tempCalrms,  calib_.calrms,  sizeof(tempCalrms));
97            memcpy(tempCalbase, calib_.calbase, sizeof(tempCalbase));
98            memcpy(tempCalvar,  calib_.calvar,  sizeof(tempCalvar));
99            //memcpy(tempCalpuls, calib_.calpuls, sizeof(tempCalpuls));
100    
101            for (int i = 0; i < 4; i++){
102                for (int j = 0; j <11; j++){
103                    for (int z = 0; z < 96; z++){
104                        calibCalPed->calped[i][j][z]    = tempCalped[z][j][i];
105                        calibCalPed->calgood[i][j][z]   = tempCalgood[z][j][i];
106                        calibCalPed->calrms[i][j][z]    = tempCalrms[z][j][i];
107                        //calibCalPed->calpuls[i][j][z]   = tempCalpuls[z][j][i];
108                    }
109                }
110            }
111    
112            for (int i = 0; i < 4; i++){
113                for (int j = 0; j <11; j++){
114                    for (int z = 0; z < 6; z++){
115                        calibCalPed->calthr[i][j][z]    = tempCalthr[z][j][i];
116                        calibCalPed->calbase[i][j][z]   = tempCalbase[z][j][i];
117                        calibCalPed->calvar[i][j][z]    = tempCalvar[z][j][i];
118                    }
119                }
120            }
121        //-----------------------------------------------------------------------------------------
122        }
123    }
124    
125    

Legend:
Removed from v.1.2  
changed lines
  Added in v.4.4

  ViewVC Help
Powered by ViewVC 1.1.23