Logo ROOT  
Reference Guide
TStatsFeedback.h
Go to the documentation of this file.
1// @(#)root/proofplayer:$Id$
2// Author: G. Ganis May 2012
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, 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#ifndef ROOT_TStatsFeedback
13#define ROOT_TStatsFeedback
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TStatsFeedback //
19// //
20// Utility class to display PROOF stats feedback histos during queries. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24#include "TQObject.h"
25#include "TObject.h"
26
27class TProof;
28class TProof;
29class THashList;
30class TSeqCollection;
31
32class TStatsFeedback : public TObject, public TQObject {
33protected:
34 TString fName; // Identfier for this object
35 TProof *fProof; //handle to PROOF session
36public:
37 TStatsFeedback(TProof *proof = 0);
39
40 void Feedback(TList *objs);
41 const char *GetName() const { return fName.Data(); }
42 ULong_t Hash() const { return fName.Hash(); }
43
44 ClassDef(TStatsFeedback,0) // Present PROOF query feedback
45};
46
47#endif
unsigned long ULong_t
Definition: RtypesCore.h:53
#define ClassDef(name, id)
Definition: Rtypes.h:322
THashList implements a hybrid collection class consisting of a hash table and a list to store TObject...
Definition: THashList.h:34
A doubly linked list.
Definition: TList.h:44
Mother of all ROOT objects.
Definition: TObject.h:37
This class controls a Parallel ROOT Facility, PROOF, cluster.
Definition: TProof.h:316
This is the ROOT implementation of the Qt object communication mechanism (see also http://www....
Definition: TQObject.h:48
Sequenceable collection abstract base class.
Utility class to display PROOF stats feedback histos during queries.
TStatsFeedback(TProof *proof=0)
Constructor.
const char * GetName() const
Returns name of object.
ULong_t Hash() const
Return hash value for this object.
~TStatsFeedback()
Destructor.
void Feedback(TList *objs)
Display feedback.
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364
UInt_t Hash(ECaseCompare cmp=kExact) const
Return hash value.
Definition: TString.cxx:638