/[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 2.3 by kusanagi, Thu Dec 16 17:32:57 2004 UTC revision 4.1 by kusanagi, Wed Mar 9 19:44:19 2005 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 2.2 2004/12/03 22:08:00 kusanagi Exp $   * $Id: CalibTrk2Reader.cpp,v 4.0 2005/03/06 04:33:02 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the LogReader class.   * Implementation of the LogReader class.
# Line 33  extern "C" { Line 33  extern "C" {
33        int   nbad_l2[6];        int   nbad_l2[6];
34        int   nbad_l3[6];        int   nbad_l3[6];
35        int   cal_flag[6];        int   cal_flag[6];
       int   checksum[6];  
       int   DSPbad_par[6][3072];  
36        float DSPped_par[6][3072];        float DSPped_par[6][3072];
37        float DSPsig_par[6][3072];        float DSPsig_par[6][3072];
38          int   DSPbad_par[6][3072];
39      } trkcalib_;      } trkcalib_;
40  #include <dirent.h>  #include <dirent.h>
41  }  }
# Line 66  CalibTrk2Reader::CalibTrk2Reader(void): Line 65  CalibTrk2Reader::CalibTrk2Reader(void):
65   */   */
66  std::string CalibTrk2Reader::GetVersionInfo(void) const {  std::string CalibTrk2Reader::GetVersionInfo(void) const {
67    return    return
68      "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 2.2 2004/12/03 22:08:00 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk2Reader.cpp,v 4.0 2005/03/06 04:33:02 kusanagi Exp $\n";
69  }  }
70    
71  /**  /**
# Line 91  void CalibTrk2Reader::RunEvent(int Event Line 90  void CalibTrk2Reader::RunEvent(int Event
90            
91      //Scrivo un file temporaneo per passarlo alla routine      //Scrivo un file temporaneo per passarlo alla routine
92      //Speriamo di cambiare la routine per passargli un buffer.....      //Speriamo di cambiare la routine per passargli un buffer.....
93      DIR *dirp;      oss.str("");
94      std::string pathDir((char*)getenv("YODA_DATA"));      oss << getenv("YODA_DATA") << "/" << time(NULL) << "trc2.dat";
     pathDir = pathDir + "/todatemp.dat";  
95      FILE *pfile;      FILE *pfile;
96      pfile = fopen((char*)pathDir.c_str(), "wb");      pfile = fopen(oss.str().c_str(), "wb");
97      fwrite(subData, 1, dataLength, pfile);      fwrite(subData, 1, dataLength, pfile);
98      fclose(pfile);      fclose(pfile);
99    
100      //Call to the FORTRAN routin that unpack tracker events      //Call to the FORTRAN routin that unpack tracker events
101      trkcalibpkt_(&ERROR, (char*)pathDir.c_str());      trkcalibpkt_(&ERROR, (char*)oss.str().c_str());
102    
103        calibTrk2->unpackError = ERROR;
104        remove(oss.str().c_str());
105      if (ERROR != 0) {      if (ERROR != 0) {
106          oss.str("");          oss.str("");
107          oss <<  "Fortran77 function trkcalibpkt error code = " << ERROR;          oss <<  "Fortran77 function trkcalibpkt error code = " << ERROR;
108          logger->warn(oss.str().c_str());          logger->warn(oss.str().c_str());
109      }      }
110      //delete the temporary file      //delete the temporary file
111      remove((char*)pathDir.c_str());      remove((char*)oss.str().c_str());
112    
113      //Store the unpacked data      //Store the unpacked data
114      memcpy(calibTrk2->DAQmode,      trkcalib_.DAQmode,     sizeof(calibTrk2->DAQmode));      memcpy(calibTrk2->DAQmode,      trkcalib_.DAQmode,     sizeof(calibTrk2->DAQmode));

Legend:
Removed from v.2.3  
changed lines
  Added in v.4.1

  ViewVC Help
Powered by ViewVC 1.1.23