/*! \file \version $Id: TAGrunInfo.cxx,v 1.2 2003/06/09 18:50:12 mueller Exp $ \brief Implementation of TATOFrunInfo. */ #include "TBuffer.h" #include "TATOFrunInfo.h" /*! \class TATOFrunInfo TATOFrunInfo.h "TATOFrunInfo.h" \brief Run number info. ** */ ClassImp(TATOFrunInfo); //------------------------------------------+----------------------------------- //! Destructor. TATOFrunInfo::~TATOFrunInfo() {} //------------------------------------------+----------------------------------- //! Clear run info. void TATOFrunInfo::Clear(Option_t*) { fiCam = -1; fiRun = -1; return; } //------------------------------------------+----------------------------------- //! ostream insertion. void TATOFrunInfo::ToStream(ostream& os, Option_t* option) const { os << "TATOFrunInfo: " << Form(" cam = %4d", fiCam) << Form(" run = %4d", fiRun) << endl; }