/*! \file \version $Id: TAGactionFile.cxx,v 1.1 2003/07/08 18:51:50 mueller Exp $ \brief Implementation of TATOFactionFile. */ #include "TATOFactionFile.h" /*! \class TATOFactionFile TATOFactionFile.hxx "TATOFactionFile.hxx" \brief Abstract base class for event I/O handling actions ** */ //------------------------------------------+----------------------------------- //! Default constructor. TATOFactionFile::TATOFactionFile(const char* name, const char* title, const char* openopt) : TATOFaction(name, title), fOpenOpt("READ") { if (openopt) fOpenOpt = openopt; } //------------------------------------------+----------------------------------- //! Destructor. TATOFactionFile::~TATOFactionFile() { Close(); } //------------------------------------------+----------------------------------- //! Open file. Int_t TATOFactionFile::Open(const TString& name, Option_t* option) { MayNotUse("Open"); return -1; } //------------------------------------------+----------------------------------- //! Close file. void TATOFactionFile::Close() { return; } //------------------------------------------+----------------------------------- //! Returns \a true if a file is open. Bool_t TATOFactionFile::IsOpen() const { return kFALSE; }