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

Diff of /yoda/techmodel/TrgAlarmReader.cpp

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

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

Legend:
Removed from v.4.0  
changed lines
  Added in v.5.3

  ViewVC Help
Powered by ViewVC 1.1.23