//------------------------------------------+----------------------------------- //! Default constructor. inline TATOFnamed::TATOFnamed() {} //------------------------------------------+----------------------------------- //! Construct with \a name and \a title. inline TATOFnamed::TATOFnamed(const char* name, const char* title) : TNamed(name, title) {} //------------------------------------------+----------------------------------- //! Construct with \a name and \a title. inline TATOFnamed::TATOFnamed(const TString& name, const TString& title) : TNamed(name, title) {} //------------------------------------------+----------------------------------- //! Returns setting of the kFail status bit. inline Bool_t TATOFnamed::Fail() const { return TestBit(kFail); } //------------------------------------------+----------------------------------- /*! \relates TATOFnamed \brief ostream insertion operator. */ inline ostream& operator<<(ostream& os, const TATOFnamed& obj) { obj.ToStream(os); return os; }