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

Diff of /yoda/techmodel/NdInitReader.cpp

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

revision 4.4 by kusanagi, Sat May 28 10:44:11 2005 UTC revision 6.1 by mocchiut, Fri Sep 29 10:19:24 2006 UTC
# Line 1  Line 1 
1    /** @file
2     * $Author: kusanagi $
3     * $Date: 2006/02/07 17:11:09 $
4     * $Revision: 6.0 $
5     *
6     * Implementation of the NdInitReader class.
7     */
8    
 // Implementation of the NdInitReader 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    
13  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.NdInitReader"));  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.NdInitReader"));
# Line 34  NdInitReader::NdInitReader(void): Line 26  NdInitReader::NdInitReader(void):
26   */   */
27  std::string NdInitReader::GetVersionInfo(void) const {  std::string NdInitReader::GetVersionInfo(void) const {
28    return    return
29      "$Trailer: /home/cvsmanager/yoda/techmodel/NdInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 kusanagi Exp $\n";      "$Trailer: /home/cvsmanager/yoda/techmodel/NdInitReader.cpp,v 1.1.1.1 2004/07/06 12:20:23 Maurizio Nagni Exp $\n";
30  }  }
31    
32  /**  /**
# Line 48  void NdInitReader::Init(PamelaRun *run) Line 40  void NdInitReader::Init(PamelaRun *run)
40  }  }
41    
42  /**  /**
43   * Unpack the AcInit event from an input file.   * Unpack the NdInit event, which is a dummy packet, from an input file.
44     * The CPU does not add any CRC control at the packet end.
45     * @param EventNumber
46     * @param dataLength
47   */   */
48  void NdInitReader::RunEvent(int EventNumber, long int length) throw (WrongCRCException){  void NdInitReader::RunEvent(int EventNumber, long int dataLength) throw (WrongCRCException){
49  /*      char      subData[dataLength];
50      rec = new NeutronRecord(); //aggiungo un nuovo NeutronRecord all'evento      memset(subData,  0, dataLength*sizeof(char));
51      rec->upperTrig   = (((BYTE)data[lenght-offset])>>4);      InputFile->read(subData, sizeof(subData));
52      rec->bottomTrig  = (((BYTE)data[lenght-offset])&0x0F);      ndInit->ndInitData        = new TArrayC(dataLength, subData);
     rec->upperBack   = (((BYTE)data[lenght-offset+1])>>4);  
     rec->bottomBack  = (((BYTE)data[lenght-offset+1])&0x0F);      
  */    
53  }  }
54    

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

  ViewVC Help
Powered by ViewVC 1.1.23