00001 // @(#)root/net:$Id: TGridJob.cxx 23091 2008-04-09 15:04:27Z rdm $ 00002 // Author: Jan Fiete Grosse-Oetringhaus 06/10/2004 00003 00004 /************************************************************************* 00005 * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. * 00006 * All rights reserved. * 00007 * * 00008 * For the licensing terms see $ROOTSYS/LICENSE. * 00009 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00010 *************************************************************************/ 00011 00012 ////////////////////////////////////////////////////////////////////////// 00013 // // 00014 // TGridJob // 00015 // // 00016 // Abstract base class defining interface to a GRID job. // 00017 // // 00018 // Related classes are TGridJobStatus. // 00019 // // 00020 ////////////////////////////////////////////////////////////////////////// 00021 00022 #include "TGridJob.h" 00023 00024 ClassImp(TGridJob) 00025 00026 00027 //______________________________________________________________________________ 00028 Int_t TGridJob::GetOutputSandbox(const char *, Option_t *) 00029 { 00030 // Must be implemented by actual GRID job implementation. Returns -1 in 00031 // case of error, 0 otherwise. 00032 00033 MayNotUse("GetOutputSandbox"); 00034 return -1; 00035 }