Back to index

See source file

CRawSoR.h

 
//----------------------------------------------------------------------------- 
//  $Header: /tmp_mnt/asis/offline/ceres/cool/project/RCS/CRawSoR.h,v 2.1 1996/10/04 08:45:24 voigt Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declaration of class CRawSoR. 
// 
//----------------------------------------------------------------------------- 
#ifndef CRAWSOR_H 
#define CRAWSOR_H 
 
#include "CRawDataEvent.h" 
 
class CRawSoR : public CRawDataEvent { 
public: 
   CRawSoR(); 
 
public: 
   void unpackRootLabel(); 
    
public: 
   inline int            getDAQVersion() const {return daqVersion;} 
   inline const CString& getRunComment() const {return runComment;} 
   inline const CString& getTarget()     const {return target;} 
    
private: 
   int     daqVersion; 
   CString runComment; 
   CString target; 
}; 
 
#endif /* CRAWSOR_H */ 
 

Back to index

See source file