Logo ROOT  
Reference Guide
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
25
26////////////////////////////////////////////////////////////////////////////////
27/// Print information about jobs.
28
30 Int_t /*recurse*/) const
31{
32 TAlienJobStatus* jobstatus = (TAlienJobStatus*) entry;
33 TString split(jobstatus->GetKey("split"));
34 TString queueid(jobstatus->GetKey("queueId"));
36 printf("JobId = %s Split = %s\n", queueid.Data(), split.Data());
37}
const char Option_t
Definition: RtypesCore.h:64
#define ClassImp(name)
Definition: Rtypes.h:361
virtual void PrintCollectionEntry(TObject *entry, Option_t *option, Int_t recurse) const
Print information about jobs.
const char * GetKey(const char *key)
Return a key.
Mother of all ROOT objects.
Definition: TObject.h:37
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
Definition: TROOT.cxx:2781
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364