#ifndef ROOT_TGridResult
#define ROOT_TGridResult
#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)
};
#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.