00001 // @(#)root/alien:$Id: TAlienMasterJob.h 20882 2007-11-19 11:31:26Z rdm $ 00002 // Author: Jan Fiete Grosse-Oetringhaus 27/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 #ifndef ROOT_TAlienMasterJob 00013 #define ROOT_TAlienMasterJob 00014 00015 ////////////////////////////////////////////////////////////////////////// 00016 // // 00017 // TAlienMasterJob // 00018 // // 00019 // Special Grid job which contains a master job which controls // 00020 // underlying jobs resulting from job splitting. // 00021 // // 00022 // Related classes are TAlienJobStatus. // 00023 // // 00024 ////////////////////////////////////////////////////////////////////////// 00025 00026 #ifndef ROOT_TGridJob 00027 #include "TGridJob.h" 00028 #endif 00029 00030 00031 class TAlienMasterJob : public TGridJob { 00032 00033 public: 00034 TAlienMasterJob(TString jobID) : TGridJob(jobID) { } 00035 virtual ~TAlienMasterJob() { } 00036 00037 virtual TGridJobStatus *GetJobStatus() const; 00038 00039 void Print(Option_t *) const; 00040 Bool_t Merge(); 00041 Bool_t Merge(const char *inputname, const char *mergeoutput = 0); 00042 void Browse(TBrowser* b); 00043 00044 ClassDef(TAlienMasterJob,1) // Special Alien grid job controlling results of job splitting 00045 }; 00046 00047 #endif