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

Diff of /yoda/techmodel/TofInitReader.cpp

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

revision 3.0 by kusanagi, Fri Mar 4 15:54:11 2005 UTC revision 5.2 by kusanagi, Tue Feb 7 10:36:43 2006 UTC
# Line 1  Line 1 
1    /** @file
2     * $Author: kusanagi $
3     * $Date: 2006/02/04 12:37:45 $
4     * $Revision: 5.1 $
5     *
6     * Implementation of the TofInitReader class.
7     */
8    
 // Implementation of the TofInitReader class.  
   
   
 #define UINT unsigned int  
 #define BYTE  unsigned char  
 #include <string>  
 #include <log4cxx/logger.h>  
 extern "C" {  
 #include <sys/time.h>  
 #include "CRC.h"  
 }  
   
 #include <fstream>  
 #include "stdio.h"  
9  #include "ReaderAlgorithms.h"  #include "ReaderAlgorithms.h"
10    
 #include "event/TofInitEvent.h"  
   
 using namespace pamela;  
11  using namespace pamela::techmodel;  using namespace pamela::techmodel;
   
12  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TofInitReader"));  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TofInitReader"));
13    
14  /**  /**
# Line 36  TofInitReader::TofInitReader(void): Line 25  TofInitReader::TofInitReader(void):
25   */   */
26  std::string TofInitReader::GetVersionInfo(void) const {  std::string TofInitReader::GetVersionInfo(void) const {
27    return    return
28      "$Trailer: /home/cvsmanager/yoda/techmodel/TofInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";      "$Trailer: /opt/cvsmanager/yoda/techmodel/TofInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
29  }  }
30    
31  /**  /**
# Line 50  void TofInitReader::Init(PamelaRun *run) Line 39  void TofInitReader::Init(PamelaRun *run)
39    
40  /**  /**
41   * Unpack the TofInit event from an input file.   * Unpack the TofInit event from an input file.
42     * The CPU does not add any CRC control at the packet end.
43     * @param EventNumber
44     * @param dataLength
45   */   */
46  void TofInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){  void TofInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){
47            char      subData[dataLength];
48            InputFile->read(subData, sizeof(subData));
49        tofInit->tofInitData        = new TArrayC(dataLength, subData);
50  }  }
51    

Legend:
Removed from v.3.0  
changed lines
  Added in v.5.2

  ViewVC Help
Powered by ViewVC 1.1.23