Back to index

See source file

CRawEoR.h

 
//----------------------------------------------------------------------------- 
//  $Header: /tmp_mnt/asis/offline/ceres/cool/project/RCS/CRawEoR.h,v 2.1 1996/10/04 08:45:32 voigt Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declaration of class CRawEoR. 
// 
//----------------------------------------------------------------------------- 
#ifndef CRAWEOR_H 
#define CRAWEOR_H 
 
#include "CRawDataEvent.h" 
 
class CRawEoR : public CRawDataEvent { 
public: 
   CRawEoR(); 
 
public: 
   void unpackRootLabel(); 
    
public: 
   inline int getTotalEvt() const {return totalEvt;} 
   inline int getTotalSoB() const {return totalSoB;} 
   inline int getTotalEoB() const {return totalEoB;} 
   inline int getTotalOoB() const {return totalOoB;} 
    
private: 
   int totalEvt; 
   int totalSoB; 
   int totalEoB; 
   int totalOoB; 
}; 
 
#endif /* CRAWEOR_H */ 
 

Back to index

See source file