/*! \file \version $Id: TAGmbsEventInfo.cxx,v 1.2 2001/12/10 21:29:44 mueller Exp $ \brief Implementation of TATOFmbsEventInfo. */ #include "TBuffer.h" #include "TATOFmbsEventInfo.h" /*! \class TATOFmbsEventInfo TATOFmbsEventInfo.h "TATOFmbsEventInfo.h" \brief MBS raw event info. ** */ ClassImp(TATOFmbsEventInfo); //------------------------------------------+----------------------------------- //! Destructor. TATOFmbsEventInfo::~TATOFmbsEventInfo() {} /*------------------------------------------+---------------------------------*/ //! Custom streamer. void TATOFmbsEventInfo::Streamer(TBuffer &R__b) { UInt_t R__s, R__c; if (R__b.IsReading()) { Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { } R__b >> fiTypId; R__b >> fiTime; } else { R__c = R__b.WriteVersion(TATOFmbsEventInfo::IsA(), kFALSE); R__b << fiTypId; R__b << fiTime; } return; }