Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TAlienJobStatusList.cxx
Go to the documentation of this file.
1 // @(#)root/alien:$Id$
2 // Author: Andreas-Joachim Peters 10/12/2006
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2004, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 //////////////////////////////////////////////////////////////////////////
13 // //
14 // TAlienJobStatusList //
15 // //
16 // Alien implementation of TGridJobStatusList //
17 // //
18 //////////////////////////////////////////////////////////////////////////
19 
20 #include "TAlienJobStatusList.h"
21 #include "TAlienJobStatus.h"
22 #include "TROOT.h"
23 
24 ClassImp(TAlienJobStatusList);
25 
26 ////////////////////////////////////////////////////////////////////////////////
27 /// Print information about jobs.
28 
29 void TAlienJobStatusList::PrintCollectionEntry(TObject* entry, Option_t* /*option*/,
30  Int_t /*recurse*/) const
31 {
32  TAlienJobStatus* jobstatus = (TAlienJobStatus*) entry;
33  TString split(jobstatus->GetKey("split"));
34  TString queueid(jobstatus->GetKey("queueId"));
35  TROOT::IndentLevel();
36  printf("JobId = %s Split = %s\n", queueid.Data(), split.Data());
37 }