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

Diff of /yoda/techmodel/CalibTrk1Reader.cpp

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

revision 2.2 by kusanagi, Fri Dec 3 22:08:00 2004 UTC revision 2.4 by kusanagi, Wed Dec 22 11:38:35 2004 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v $   * $Source: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v $
3   * $Id: CalibTrk1Reader.cpp,v 2.1 2004/10/17 12:28:38 kusanagi Exp $   * $Id: CalibTrk1Reader.cpp,v 2.3 2004/12/16 17:32:57 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the LogReader class.   * Implementation of the LogReader class.
# Line 67  CalibTrk1Reader::CalibTrk1Reader(void): Line 67  CalibTrk1Reader::CalibTrk1Reader(void):
67   */   */
68  std::string CalibTrk1Reader::GetVersionInfo(void) const {  std::string CalibTrk1Reader::GetVersionInfo(void) const {
69    return    return
70      "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v 2.1 2004/10/17 12:28:38 kusanagi Exp $\n";      "$Header: /home/cvsmanager/yoda/techmodel/CalibTrk1Reader.cpp,v 2.3 2004/12/16 17:32:57 kusanagi Exp $\n";
71  }  }
72    
73  /**  /**
# Line 92  void CalibTrk1Reader::RunEvent(int Event Line 92  void CalibTrk1Reader::RunEvent(int Event
92        
93      //Scrivo un file temporaneo per passarlo alla routine      //Scrivo un file temporaneo per passarlo alla routine
94      //Speriamo di cambiare la routine per passargli un buffer.....      //Speriamo di cambiare la routine per passargli un buffer.....
95      DIR *dirp;      oss.str("");
96      std::string pathDir((char*)getenv("YODA_DATA"));      oss << getenv("YODA_DATA") << "/" << time(NULL) << "trc1.dat";
     pathDir = pathDir + "/todatemp.dat";;  
97      FILE *pfile;      FILE *pfile;
98      pfile = fopen((char*)pathDir.c_str(), "wb");      pfile = fopen(oss.str().c_str(), "wb");
99      fwrite(subData, 1, dataLength, pfile);      fwrite(subData, 1, dataLength, pfile);
100      fclose(pfile);      fclose(pfile);
101    
102      //Call to the FORTRAN routin that unpack tracker events      //Call to the FORTRAN routin that unpack tracker events
103      trkcalibpkt_(&ERROR, (char*)pathDir.c_str());      trkcalibpkt_(&ERROR, (char*)oss.str().c_str());
104    
105      if (ERROR != 0) {      if (ERROR != 0) {
106          oss.str("");          oss.str("");
# Line 109  void CalibTrk1Reader::RunEvent(int Event Line 108  void CalibTrk1Reader::RunEvent(int Event
108          logger->warn(oss.str().c_str());          logger->warn(oss.str().c_str());
109      }      }
110    
111      remove((char*)pathDir.c_str());      remove((char*)oss.str().c_str());
112    
113      //Store the unpacked data      //Store the unpacked data
114      memcpy(calibTrk1->DAQmode,      trkcalib_.DAQmode,      sizeof(calibTrk1->DAQmode));      memcpy(calibTrk1->DAQmode,      trkcalib_.DAQmode,      sizeof(calibTrk1->DAQmode));
# Line 145  void CalibTrk1Reader::RunEvent(int Event Line 144  void CalibTrk1Reader::RunEvent(int Event
144          }          }
145      }      }
146  //-----------------------------------------------------------------------------------------  //-----------------------------------------------------------------------------------------
147      delete [] subData;      //delete [] subData;
148  }  }
149    
150    

Legend:
Removed from v.2.2  
changed lines
  Added in v.2.4

  ViewVC Help
Powered by ViewVC 1.1.23