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

Diff of /yoda/techmodel/CalibTrk2Reader.cpp

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

revision 1.6 by kusanagi, Tue Sep 21 20:24:33 2004 UTC revision 5.1 by kusanagi, Sat Feb 4 12:37:44 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v $   * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v $
3   * $Id: CalibTrk2Reader.cpp,v 1.5 2004/08/24 16:01:57 kusanagi Exp $   * $Id: CalibTrk2Reader.cpp,v 5.0 2005/08/29 09:46:13 Maurizio Nagni Exp $
4   * $Author: kusanagi $   * $Author: Maurizio Nagni $
5   *   *
6   * Implementation of the LogReader class.   * Implementation of the LogReader class.
7  * ToBeDone:  * ToBeDone:
# Line 12  Line 12 
12  #define BYTE  unsigned char  #define BYTE  unsigned char
13  #include <string>  #include <string>
14  #include <log4cxx/logger.h>  #include <log4cxx/logger.h>
15    #include <fstream>
16    #include "stdio.h"
17    #include "ReaderAlgorithms.h"
18    #include "event/PamelaRun.h"
19    
20    #include "event/CalibTrk2Event.h"
21    
22  extern "C" {  extern "C" {
23      #include "CRC.h"      #include "CRC.h"
24      //Passo il path verso la il file temporaneo      extern void trkcalibpkt_(int*, unsigned char[], long int*, int*); //(*)
     extern void trkcalibpkt_(int*, char*);  
25    
26      //Struct per il passaggio di dati da e verso la chiamata fortran      //Struct per il passaggio di dati da e verso la chiamata fortran
27      extern struct {      extern struct {
28        int   DAQmode[6];      int   good0;
29        int   DSPnumber[6];      int   DAQmode[6];
30        int   calibnumber[6];      int   DSPnumber[6];
31        int   ncalib_event[6];      int   calibnumber[6];
32        int   ped_l1[6];      int   ncalib_event[6];
33        int   ped_l2[6];      int   ped_l1[6];
34        int   ped_l3[6];      int   ped_l2[6];
35        int   sig_l1[6];      int   ped_l3[6];
36        int   sig_l2[6];      int   sig_l1[6];
37        int   sig_l3[6];      int   sig_l2[6];
38        int   nbad_l1[6];      int   sig_l3[6];
39        int   nbad_l2[6];      int   nbad_l1[6];
40        int   nbad_l3[6];      int   nbad_l2[6];
41        int   cal_flag[6];      int   nbad_l3[6];
42        int   checksum[6];      int   cal_flag[6];
43        int   DSPbad_par[6][3072];      float DSPped_par[3072][6];
44        float DSPped_par[6][3072];      float DSPsig_par[3072][6];
45        float DSPsig_par[6][3072];      int   DSPbad_par[3072][6];
46        int   crc_cal[3][6];
47        int   crc_hcal[6];
48      } trkcalib_;      } trkcalib_;
   
49  #include <dirent.h>  #include <dirent.h>
50  }  }
51    
 #include <fstream>  
 #include "stdio.h"  
 #include "ReaderAlgorithms.h"  
   
 #include "event/CalibTrk2Event.h"  
   
52  using namespace pamela;  using namespace pamela;
53  using namespace pamela::techmodel;  using namespace pamela::techmodel;
54    
# Line 67  CalibTrk2Reader::CalibTrk2Reader(void): Line 68  CalibTrk2Reader::CalibTrk2Reader(void):
68   */   */
69  std::string CalibTrk2Reader::GetVersionInfo(void) const {  std::string CalibTrk2Reader::GetVersionInfo(void) const {
70    return    return
71      "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 1.5 2004/08/24 16:01:57 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 5.0 2005/08/29 09:46:13 Maurizio Nagni Exp $\n";
72  }  }
73    
74  /**  /**
# Line 81  void CalibTrk2Reader::Init(PamelaRun *ru Line 82  void CalibTrk2Reader::Init(PamelaRun *ru
82  }  }
83    
84  /**  /**
85   * Unpack the CalibTrk2 event from an input file.   * Unpack the CalibTrk event from an input file.
86   */   */
87  void CalibTrk2Reader::RunEvent(int EventNumber, long int length) {  //void CalibTrkReader::RunEvent(int EventNumber, long int length, char *subData) {
88    void CalibTrk2Reader::RunEvent(int EventNumber, long int dataLength) throw (Exception){
89      std::stringstream oss;          std::stringstream oss;    
90      char     *subData;      char     subData[dataLength];
91      char      eventCRC[2];      int       ERROR;
     UINT16    subCRC;      //CRC of the data  
     UINT16    readCRC;     //CRC read from the end of the subpacket  
     long int  dataLength;  
   
     //the 2 bytes subtracted belong to the final event CRC bytes  
     dataLength = length - (long int)2;  
   
     subData = new char[dataLength];  
92      InputFile->read(subData, sizeof(unsigned char)*dataLength);      InputFile->read(subData, sizeof(unsigned char)*dataLength);
93      subCRC = CM_Compute_CRC16(0, (BYTE*)subData, dataLength);      char *data = new char[dataLength];                          
94        memcpy(data, subData, dataLength);                          
95      //took the final CRC to compare it with the previous calculated CRC of the data      int curpos=1;                                              
96      InputFile->read(eventCRC, sizeof(eventCRC));  
97      readCRC = (((UINT16)(eventCRC[0]<<8))&0xFF00) + (((UINT16)eventCRC[1])&0x00FF);      //Call to the FORTRAN routin that unpack tracker events
98            trkcalibpkt_( &ERROR,(unsigned char*)data, &dataLength, &curpos);
99      if (subCRC == readCRC){  
100          int       ERROR;      calibTrk2->unpackError = ERROR;
101            if (ERROR != 0) {
102          //Scrivo un file temporaneo per passarlo alla routine          oss.str("");
         //Speriamo di cambiare la routine per passargli un buffer.....  
         DIR *dirp;  
         std::string pathDir((char*)getenv("YODA_DATA"));  
         pathDir = pathDir + "/todatemp.dat";  
         FILE *pfile;  
         pfile = fopen((char*)pathDir.c_str(), "wb");  
         fwrite(subData, 1, dataLength, pfile);  
         fclose(pfile);  
   
         //Call to the FORTRAN routin that unpack tracker events  
         trkcalibpkt_(&ERROR, (char*)pathDir.c_str());  
           
         //delete the temporary file  
         remove((char*)pathDir.c_str());  
   
         //Store the unpacked data  
         memcpy(calibTrk2->DAQmode,     trkcalib_.DAQmode,     sizeof(calibTrk2->DAQmode));  
         memcpy(calibTrk2->DSPnumber,   trkcalib_.DSPnumber,   sizeof(calibTrk2->DSPnumber));  
         memcpy(calibTrk2->calibnumber, trkcalib_.calibnumber, sizeof(calibTrk2->calibnumber));  
         memcpy(calibTrk2->DSPnumber, trkcalib_.ncalib_event,  sizeof(calibTrk2->ncalib_event));  
         memcpy(calibTrk2->ped_l1,    trkcalib_.ped_l1,     sizeof(calibTrk2->ped_l1));  
         memcpy(calibTrk2->ped_l2,    trkcalib_.ped_l2,     sizeof(calibTrk2->ped_l2));  
         memcpy(calibTrk2->ped_l3,    trkcalib_.ped_l3,     sizeof(calibTrk2->ped_l3));  
         memcpy(calibTrk2->sig_l1,    trkcalib_.sig_l1,     sizeof(calibTrk2->sig_l1));  
         memcpy(calibTrk2->sig_l2,    trkcalib_.sig_l2,     sizeof(calibTrk2->sig_l2));  
         memcpy(calibTrk2->sig_l3,    trkcalib_.sig_l3,     sizeof(calibTrk2->sig_l3));  
         memcpy(calibTrk2->nbad_l1,   trkcalib_.nbad_l1,    sizeof(calibTrk2->nbad_l1));  
         memcpy(calibTrk2->nbad_l2,   trkcalib_.nbad_l2,    sizeof(calibTrk2->nbad_l2));  
         memcpy(calibTrk2->nbad_l3,   trkcalib_.nbad_l3,    sizeof(calibTrk2->nbad_l3));  
         memcpy(calibTrk2->cal_flag,  trkcalib_.cal_flag,   sizeof(calibTrk2->cal_flag));        
     
 //--------have to invert array because of FORTRAN <-> C different management of the indexes  
         int tempBad_par[3072][6];  
         int tempPed_par[3072][6];  
         int tempSig_par[3072][6];  
         memcpy(tempBad_par,trkcalib_.DSPbad_par, sizeof(tempBad_par));        
         memcpy(tempPed_par,trkcalib_.DSPped_par, sizeof(tempPed_par));        
         memcpy(tempSig_par,trkcalib_.DSPsig_par, sizeof(tempSig_par));        
   
         for (int i = 0; i < 6; i++){  
             for (int j = 0; j < 3072; j++){  
                 calibTrk2->DSPbad_par[i][j] = tempBad_par[j][i];  
                 calibTrk2->DSPped_par[i][j] = tempPed_par[j][i];  
                 calibTrk2->DSPsig_par[i][j] = tempSig_par[j][i];  
             }  
         }  
 //-----------------------------------------------------------------------------------------  
         oss.flush();  
103          oss <<  "Fortran77 function trkcalibpkt error code = " << ERROR;          oss <<  "Fortran77 function trkcalibpkt error code = " << ERROR;
104          logger->warn(oss.str().c_str());          logger->warn(oss.str().c_str());
     } else {  
         logger->debug(_T("Wrong CRC for CalibTrk2 Packet "));  
105      }      }
106      delete [] subData;  
107        //Store the unpacked data
108        calibTrk2->good0 = trkcalib_.good0;
109        memcpy(calibTrk2->DAQmode,      trkcalib_.DAQmode,      sizeof(calibTrk2->DAQmode));
110        memcpy(calibTrk2->DSPnumber,    trkcalib_.DSPnumber,    sizeof(calibTrk2->DSPnumber));
111        memcpy(calibTrk2->calibnumber,  trkcalib_.calibnumber,  sizeof(calibTrk2->calibnumber));
112        memcpy(calibTrk2->ncalib_event, trkcalib_.ncalib_event, sizeof(calibTrk2->ncalib_event));
113        memcpy(calibTrk2->ped_l1,       trkcalib_.ped_l1,       sizeof(calibTrk2->ped_l1));
114        memcpy(calibTrk2->ped_l2,       trkcalib_.ped_l2,       sizeof(calibTrk2->ped_l2));
115        memcpy(calibTrk2->ped_l3,       trkcalib_.ped_l3,       sizeof(calibTrk2->ped_l3));
116        memcpy(calibTrk2->sig_l1,       trkcalib_.sig_l1,       sizeof(calibTrk2->sig_l1));
117        memcpy(calibTrk2->sig_l2,       trkcalib_.sig_l2,       sizeof(calibTrk2->sig_l2));
118        memcpy(calibTrk2->sig_l3,       trkcalib_.sig_l3,       sizeof(calibTrk2->sig_l3));
119        memcpy(calibTrk2->nbad_l1,      trkcalib_.nbad_l1,      sizeof(calibTrk2->nbad_l1));
120        memcpy(calibTrk2->nbad_l2,      trkcalib_.nbad_l2,      sizeof(calibTrk2->nbad_l2));
121        memcpy(calibTrk2->nbad_l3,      trkcalib_.nbad_l3,      sizeof(calibTrk2->nbad_l3));
122        memcpy(calibTrk2->cal_flag,     trkcalib_.cal_flag,     sizeof(calibTrk2->cal_flag));      
123    
124        int     tempBad_par[3072][6];
125        float   tempPed_par[3072][6];
126        float   tempSig_par[3072][6];
127        int     tempCrc_cal[3][6];
128        memcpy(tempBad_par,trkcalib_.DSPbad_par, sizeof(tempBad_par));      
129        memcpy(tempPed_par,trkcalib_.DSPped_par, sizeof(tempPed_par));      
130        memcpy(tempSig_par,trkcalib_.DSPsig_par, sizeof(tempSig_par));      
131        memcpy(tempCrc_cal,trkcalib_.crc_cal,    sizeof(tempCrc_cal));      
132    
133        for (int i = 0; i < 6; i++){
134            for (int j = 0; j < 3072; j++){
135                calibTrk2->DSPbad_par[i][j] = tempBad_par[j][i];
136                calibTrk2->DSPped_par[i][j] = tempPed_par[j][i];
137                calibTrk2->DSPsig_par[i][j] = tempSig_par[j][i];
138            }
139            for (int k = 0; k < 3; k++){
140                calibTrk2->crc_cal[i][k] = tempCrc_cal[k][i];
141            }
142        }
143    //-----------------------------------------------------------------------------------------
144  }  }
145    
146    

Legend:
Removed from v.1.6  
changed lines
  Added in v.5.1

  ViewVC Help
Powered by ViewVC 1.1.23