/*! \file \version $Id: TAGaction.icc,v 1.2 2001/12/09 20:35:39 mueller Exp $ \brief Implementation (inline) of TATOFaction */ //------------------------------------------+----------------------------------- //! Returns setting of the kValid status bit. inline Bool_t TATOFaction::Valid() const { return TestBit(kValid); } //------------------------------------------+----------------------------------- //! Returns setting of the kEof status bit. inline Bool_t TATOFaction::Eof() const { return TestBit(kEof); } //------------------------------------------+----------------------------------- //! Returns \c true if histograms are properly booked inline Bool_t TATOFaction::ValidHistogram() const { return fbHistValid; } //------------------------------------------+----------------------------------- //! Set histogram booking state inline void TATOFaction::SetValidHistogram(Bool_t b_ok) { fbHistValid = b_ok; return; }