Back to index

See source file

CRawEvt.h

 
//----------------------------------------------------------------------------- 
//  $Header: /tmp_mnt/asis/offline/ceres/cool/project/RCS/CRawEvt.h,v 2.1 1996/10/04 08:45:30 voigt Exp $ 
// 
//  COOL Program Library   
//  Copyright (C) CERES collaboration, 1996 
// 
//  Declaration of class CRawEvt. 
// 
//----------------------------------------------------------------------------- 
#ifndef CRAWEVT_H 
#define CRAWEVT_H 
 
#include "CRawDataEvent.h" 
 
class CRawEvt : public CRawDataEvent { 
public: 
   CRawEvt(); 
 
public: 
   void unpackRootLabel(); 
    
public: 
   inline int getBurstNumber() const {return burstNumber;} 
   inline int getEventNumber() const {return eventNumber;} 
   inline int getTimeInBurst() const {return 10*timeInBurst;}   // in ms 
    
private: 
   int burstNumber; 
   int eventNumber; 
   int timeInBurst; 
}; 
 
#endif /* CRAWEVT_H */ 
 

Back to index

See source file