Logo ROOT  
Reference Guide
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
30class TProof;
31class TProof;
32class THashList;
33class TSeqCollection;
34
35class TDrawFeedback : public TObject, public TQObject {
36private:
37 TString fName; // Identfier for this object
38 Bool_t fAll; //draw all or selected objects
39 THashList *fNames; //selected objects
40
41protected:
42 Option_t *fOption; //draw option
43 TProof *fProof; //handle to PROOF session
44
45public:
46 TDrawFeedback(TProof *proof = 0, TSeqCollection *names = 0);
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
unsigned long ULong_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:64
#define ClassDef(name, id)
Definition: Rtypes.h:322
Utility class to draw objects in the feedback list during queries.
Definition: TDrawFeedback.h:35
void Feedback(TList *objs)
Display feedback.
ULong_t Hash() const
Return hash value for this object.
Definition: TDrawFeedback.h:51
~TDrawFeedback()
Destructor.
THashList * fNames
Definition: TDrawFeedback.h:39
const char * GetName() const
Returns name of object.
Definition: TDrawFeedback.h:50
TProof * fProof
Definition: TDrawFeedback.h:43
Option_t * fOption
Definition: TDrawFeedback.h:42
void SetOption(Option_t *option)
Definition: TDrawFeedback.h:52
TDrawFeedback(TProof *proof=0, TSeqCollection *names=0)
Constructor.
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.
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