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

Diff of /yoda/techmodel/TrgInitReader.cpp

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

revision 5.0 by kusanagi, Mon Aug 29 09:46:13 2005 UTC revision 6.1 by mocchiut, Fri Sep 29 10:19:29 2006 UTC
# Line 1  Line 1 
1    /** @file
2     * $Author: kusanagi $
3     * $Date: 2006/02/07 17:11:10 $
4     * $Revision: 6.0 $
5     *
6     * Implementation of the TrgInitReader class.
7     */
8    
 // Implementation of the TrgInitReader 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/TrgInitEvent.h"  
   
 using namespace pamela;  
11  using namespace pamela::techmodel;  using namespace pamela::techmodel;
   
12  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrgInitReader"));  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.TrgInitReader"));
13    
14  /**  /**
# Line 36  TrgInitReader::TrgInitReader(void): Line 25  TrgInitReader::TrgInitReader(void):
25   */   */
26  std::string TrgInitReader::GetVersionInfo(void) const {  std::string TrgInitReader::GetVersionInfo(void) const {
27    return    return
28      "$Trailer: /home/cvsmanager/yoda/techmodel/TrgInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";      "$Trailer: /home/cvsmanager/yoda/techmodel/TrgInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
29  }  }
30    
31  /**  /**
# Line 50  void TrgInitReader::Init(PamelaRun *run) Line 39  void TrgInitReader::Init(PamelaRun *run)
39    
40  /**  /**
41   * Unpack the TrgInit event from an input file.   * Unpack the TrgInit 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 TrgInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){  void TrgInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){
47            char      subData[dataLength];
48            memset(subData,  0, dataLength*sizeof(char));
49        InputFile->read(subData, sizeof(subData));
50        trgInit->trgInitData        = new TArrayC(dataLength, subData);
51  }  }
52    

Legend:
Removed from v.5.0  
changed lines
  Added in v.6.1

  ViewVC Help
Powered by ViewVC 1.1.23