// @(#)root/net:$Name: $:$Id: TGridJob.cxx,v 1.2 2007/05/14 07:38:48 rdm Exp $ // Author: Jan Fiete Grosse-Oetringhaus 06/10/2004 /************************************************************************* * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ ////////////////////////////////////////////////////////////////////////// // // // TGridJob // // // // Abstract base class defining interface to a GRID job. // // // // Related classes are TGridJobStatus. // // // ////////////////////////////////////////////////////////////////////////// #include "TGridJob.h" ClassImp(TGridJob) //______________________________________________________________________________ Int_t TGridJob::GetOutputSandbox(const char *, Option_t *) { // Must be implemented by actual GRID job implementation. Returns -1 in // case of error, 0 otherwise. MayNotUse("GetOutputSandbox"); return -1; }