Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TDrawFeedback.h
Go to the documentation of this file.
1 // @(#)root/proofplayer:$Id$
2 // Author: Maarten Ballintijn 28/10/2003
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_TDrawFeedback
13 #define ROOT_TDrawFeedback
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TDrawFeedback //
19 // //
20 // Utility class to draw objects in the feedback list during queries. //
21 // Draws histograms in separated canvases and user-defined objects via //
22 // Draw(). Users requiring advanced treatment should implement their //
23 // own version following this example. See also TStatsFeedback. //
24 // //
25 //////////////////////////////////////////////////////////////////////////
26 
27 #include "TQObject.h"
28 #include "TObject.h"
29 
30 class TProof;
31 class TProof;
32 class THashList;
33 class TSeqCollection;
34 
35 class TDrawFeedback : public TObject, public TQObject {
36 private:
37  TString fName; // Identfier for this object
38  Bool_t fAll; //draw all or selected objects
39  THashList *fNames; //selected objects
40 
41 protected:
42  Option_t *fOption; //draw option
43  TProof *fProof; //handle to PROOF session
44 
45 public:
46  TDrawFeedback(TProof *proof = 0, TSeqCollection *names = 0);
47  ~TDrawFeedback();
48 
49  void Feedback(TList *objs);
50  const char *GetName() const { return fName.Data(); }
51  ULong_t Hash() const { return fName.Hash(); }
52  void SetOption(Option_t *option) { fOption = option; }
53 
54  ClassDef(TDrawFeedback,0) // Present PROOF query feedback
55 };
56 
57 #endif