// @(#)root/net:$Name:  $:$Id: TGridResult.h,v 1.9 2006/10/05 14:56:24 rdm Exp $
// Author: Fons Rademakers   3/1/2002

/*************************************************************************
 * Copyright (C) 1995-2002, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TGridResult
#define ROOT_TGridResult

//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TGridResult                                                          //
//                                                                      //
// Abstract base class defining interface to a GRID result.             //
// Objects of this class are created by TGrid methods.                  //
//                                                                      //
// Related classes are TGrid.                                           //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TList
#include "TList.h"
#endif

#ifndef ROOT_TEventList
#include "TEventList.h"
#endif


class TGridResult : public TList {

public:
   TGridResult() : TList() { SetOwner(kTRUE); }
   virtual ~TGridResult() { }

   virtual const char *GetFileName(UInt_t) const
      { MayNotUse("GetFileName"); return 0; }
   virtual const char *GetFileNamePath(UInt_t) const
      { MayNotUse("GetFileNamePath"); return 0; }
   virtual const char *GetPath(UInt_t) const
      { MayNotUse("GetPath"); return 0; }
   virtual const TEventList *GetEventList(UInt_t) const
      { MayNotUse("GetEventList"); return 0; }
   virtual const char *GetKey(UInt_t, const char*) const
      { MayNotUse("GetKey"); return 0; }
   virtual Bool_t      SetKey(UInt_t, const char*, const char*)
      { MayNotUse("SetKey"); return 0; }
   virtual TList      *GetFileInfoList() const
      { MayNotUse("GetFileInfoList"); return 0; }

   ClassDef(TGridResult,1)  // ABC defining interface to GRID result set
};

#endif


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.