00001 // ===================================================================== 00002 // $Id: TReadoutSection.hh,v 1.1.1.1 2003/06/27 02:56:42 goiwai Exp $ 00003 // $Name: CLDAQ-1-06-00 $ 00004 // ===================================================================== 00005 #ifndef __TREADOUTSECTION_HH 00006 #define __TREADOUTSECTION_HH 00007 00008 #include "Tglobals.h" 00009 #include "TReadoutIdentification.hh" 00010 #include "TReadoutSegmentList.hh" 00011 00012 class TDataSection; 00013 00014 class TReadoutSection 00015 : public TReadoutIdentification, public TReadoutSegmentList 00016 { 00017 00018 public: 00019 TReadoutSection( const Tstring& id = TunknownID ); 00020 TReadoutSection( const TReadoutSection& right ); 00021 ~TReadoutSection(); 00022 00023 public: 00024 const TReadoutSection& operator=( const TReadoutSection& right ); 00025 Tbool operator==( const TReadoutSection& right ) const; 00026 Tbool operator!=( const TReadoutSection& right ) const; 00027 00028 public: 00029 TDataSection Read(); 00030 00031 }; 00032 00033 #endif