Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 
27 class TProof;
28 class TProof;
29 class THashList;
30 class TSeqCollection;
31 
32 class TStatsFeedback : public TObject, public TQObject {
33 protected:
34  TString fName; // Identfier for this object
35  TProof *fProof; //handle to PROOF session
36 public:
37  TStatsFeedback(TProof *proof = 0);
38  ~TStatsFeedback();
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