00001 // @(#)root/alien:$Id: TAlienJobStatusList.cxx 25128 2008-08-12 17:59:19Z pcanal $ 00002 // Author: Andreas-Joachim Peters 10/12/2006 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 // TAlienJobStatusList // 00015 // // 00016 // Alien implementation of TGridJobStatusList // 00017 // // 00018 ////////////////////////////////////////////////////////////////////////// 00019 00020 #include "TAlienJobStatusList.h" 00021 #include "TAlienJobStatus.h" 00022 #include "TROOT.h" 00023 00024 ClassImp(TAlienJobStatusList) 00025 00026 //______________________________________________________________________________ 00027 void TAlienJobStatusList::PrintCollectionEntry(TObject* entry, Option_t* /*option*/, 00028 Int_t /*recurse*/) const 00029 { 00030 // Print information about jobs. 00031 00032 TAlienJobStatus* jobstatus = (TAlienJobStatus*) entry; 00033 TString split(jobstatus->GetKey("split")); 00034 TString queueid(jobstatus->GetKey("queueId")); 00035 TROOT::IndentLevel(); 00036 printf("JobId = %s Split = %s\n", queueid.Data(), split.Data()); 00037 }