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

Diff of /yoda/techmodel/RunHeaderReader.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.3 by mocchiut, Fri Sep 29 10:19:25 2006 UTC
# Line 1  Line 1 
1  /** @file  /** @file
2   * $Source: /home/cvsmanager/yoda/techmodel/RunHeaderReader.cpp,v $   * $Source: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/RunHeaderReader.cpp,v $
3   * $Id: RunHeaderReader.cpp,v 4.2 2005/03/15 10:54:17 kusanagi Exp $   * $Id: RunHeaderReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $
4   * $Author: kusanagi $   * $Author: kusanagi $
5   *   *
6   * Implementation of the RunHeader class.   * Implementation of the RunHeader class.
7  */  */
8    
9    
 #define UINT unsigned int  
 #define BYTE  unsigned char  
 #include <string>  
 #include <log4cxx/logger.h>  
10  extern "C" {  extern "C" {
11  #include <sys/time.h>          #include "CRC.h"
 #include "CRC.h"  
12  }  }
   
 #include <fstream>  
 #include "stdio.h"  
13  #include "ReaderAlgorithms.h"  #include "ReaderAlgorithms.h"
14    
 #include "event/RunHeaderEvent.h"  
   
 using namespace pamela;  
15  using namespace pamela::techmodel;  using namespace pamela::techmodel;
16    
17  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.RunHeaderReader"));  static log4cxx::LoggerPtr logger = log4cxx::Logger::getLogger(_T("pamela.techmodel.RunHeaderReader"));
# Line 41  RunHeaderReader::RunHeaderReader(void): Line 30  RunHeaderReader::RunHeaderReader(void):
30   */   */
31  std::string RunHeaderReader::GetVersionInfo(void) const {  std::string RunHeaderReader::GetVersionInfo(void) const {
32    return    return
33      "$Header: /home/cvsmanager/yoda/techmodel/RunHeaderReader.cpp,v 4.2 2005/03/15 10:54:17 kusanagi Exp $\n";      "$Header: /afs/ba.infn.it/user/pamela/src/CVS/yoda/techmodel/RunHeaderReader.cpp,v 6.2 2006/05/30 19:10:03 kusanagi Exp $\n";
34  }  }
35    
36  /**  /**
# Line 63  void RunHeaderReader::RunEvent(int Event Line 52  void RunHeaderReader::RunEvent(int Event
52      UINT16    subCRC;                   //calculated CRC of the data      UINT16    subCRC;                   //calculated CRC of the data
53      UINT16    readCRC;                  //CRC read from the end of the subpacket      UINT16    readCRC;                  //CRC read from the end of the subpacket
54      long int  dataLength = length - 2;  //the block of data      long int  dataLength = length - 2;  //the block of data
55            memset(subData,  0, length*sizeof(char));
56      InputFile->read(subData, sizeof(subData));      InputFile->read(subData, sizeof(subData));
57      subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength);      subCRC = CM_Compute_CRC16(0, (UINT8*)subData, dataLength);
58      readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF);      readCRC = (((UINT16)(subData[length - 2]<<8))&0xFF00) + (((UINT16)subData[length - 1])&0x00FF);

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

  ViewVC Help
Powered by ViewVC 1.1.23