// @(#)root/treeplayer:$Id$
// Author: Rene Brun   08/01/2003

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TSelectorDraw
#define ROOT_TSelectorDraw


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TSelectorDraw                                                        //
//                                                                      //
// A specialized TSelector for TTree::Draw.                             //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TSelector
#include "TSelector.h"
#endif

class TTreeFormula;
class TTreeFormulaManager;
class TH1;
class TEntryListArray;

class TSelectorDraw : public TSelector {

protected:
   enum { kWarn = BIT(12) };

   TTree         *fTree;           //  Pointer to current Tree
   TTreeFormula **fVar;            //![fDimension] Array of pointers to variables formula
   TTreeFormula  *fSelect;         //  Pointer to selection formula
   TTreeFormulaManager *fManager;  //  Pointer to the formula manager
   TObject       *fTreeElist;      //  pointer to Tree Event list
   TEntryListArray *fTreeElistArray;   //!  pointer to Tree Event list array
   TH1           *fOldHistogram;   //! Pointer to previously used histogram
   Int_t          fAction;         //! Action type
   Long64_t       fDraw;           //! Last entry loop number when object was drawn
   Int_t          fNfill;          //! Total number of histogram fills
   Int_t          fMultiplicity;   //  Indicator of the variability of the size of entries
   Int_t          fDimension;      //  Dimension of the current expression
   Long64_t       fSelectedRows;   //  Number of selected entries
   Long64_t       fOldEstimate;    //  value of Tree fEstimate when selector is called
   Int_t          fForceRead;      //  Force Read flag
   Int_t         *fNbins;          //![fDimension] Number of bins per dimension
   Double_t      *fVmin;           //![fDimension] Minima of varexp columns
   Double_t      *fVmax;           //![fDimension] Maxima of varexp columns
   Double_t       fWeight;         //  Tree weight (see TTree::SetWeight)
   Double_t     **fVal;            //![fSelectedRows][fDimension] Local buffer for the variables
   Int_t          fValSize;
   Double_t      *fW;              //![fSelectedRows]Local buffer for weights
   Bool_t        *fVarMultiple;    //![fDimension] true if fVar[i] has a variable index
   Bool_t         fSelectMultiple; //  true if selection has a variable index
   Bool_t         fCleanElist;     //  true if original Tree elist must be saved
   Bool_t         fObjEval;        //  true if fVar1 returns an object (or pointer to).
   Long64_t       fCurrentSubEntry; // Current subentry when fSelectMultiple is true. Used to fill TEntryListArray

protected:
   virtual void      ClearFormula();
   virtual Bool_t    CompileVariables(const char *varexp="", const char *selection="");
   virtual void      InitArrays(Int_t newsize);

private:
   TSelectorDraw(const TSelectorDraw&);             // not implemented
   TSelectorDraw& operator=(const TSelectorDraw&);  // not implemented

public:
   TSelectorDraw();
   virtual ~TSelectorDraw();

   virtual void      Begin(TTree *tree);
   virtual Int_t     GetAction() const {return fAction;}
   virtual Bool_t    GetCleanElist() const {return fCleanElist;}
   virtual Int_t     GetDimension() const {return fDimension;}
   virtual Long64_t  GetDrawFlag() const {return fDraw;}
   TObject          *GetObject() const {return fObject;}
   Int_t             GetMultiplicity() const   {return fMultiplicity;}
   virtual Int_t     GetNfill() const {return fNfill;}
   TH1              *GetOldHistogram() const {return fOldHistogram;}
   TTreeFormula     *GetSelect() const    {return fSelect;}
   virtual Long64_t  GetSelectedRows() const {return fSelectedRows;}
   TTree            *GetTree() const {return fTree;}
   TTreeFormula     *GetVar(Int_t i) const;
   // See TSelectorDraw::GetVar
   TTreeFormula     *GetVar1() const {return GetVar(0);}
   // See TSelectorDraw::GetVar
   TTreeFormula     *GetVar2() const {return GetVar(1);}
   // See TSelectorDraw::GetVar
   TTreeFormula     *GetVar3() const {return GetVar(2);}
   // See TSelectorDraw::GetVar
   TTreeFormula     *GetVar4() const {return GetVar(3);}
   virtual Double_t *GetVal(Int_t i) const;
   // See TSelectorDraw::GetVal
   virtual Double_t *GetV1() const   {return GetVal(0);}
   // See TSelectorDraw::GetVal
   virtual Double_t *GetV2() const   {return GetVal(1);}
   // See TSelectorDraw::GetVal
   virtual Double_t *GetV3() const   {return GetVal(2);}
   // See TSelectorDraw::GetVal
   virtual Double_t *GetV4() const   {return GetVal(3);}
   virtual Double_t *GetW() const    {return fW;}
   virtual Bool_t    Notify();
   virtual Bool_t    Process(Long64_t /*entry*/) { return kFALSE; }
   virtual void      ProcessFill(Long64_t entry);
   virtual void      ProcessFillMultiple(Long64_t entry);
   virtual void      ProcessFillObject(Long64_t entry);
   virtual void      SetEstimate(Long64_t n);
   virtual UInt_t    SplitNames(const TString &varexp, std::vector<TString> &names);
   virtual void      TakeAction();
   virtual void      TakeEstimate();
   virtual void      Terminate();

   ClassDef(TSelectorDraw,1);  //A specialized TSelector for TTree::Draw
};

#endif
 TSelectorDraw.h:1
 TSelectorDraw.h:2
 TSelectorDraw.h:3
 TSelectorDraw.h:4
 TSelectorDraw.h:5
 TSelectorDraw.h:6
 TSelectorDraw.h:7
 TSelectorDraw.h:8
 TSelectorDraw.h:9
 TSelectorDraw.h:10
 TSelectorDraw.h:11
 TSelectorDraw.h:12
 TSelectorDraw.h:13
 TSelectorDraw.h:14
 TSelectorDraw.h:15
 TSelectorDraw.h:16
 TSelectorDraw.h:17
 TSelectorDraw.h:18
 TSelectorDraw.h:19
 TSelectorDraw.h:20
 TSelectorDraw.h:21
 TSelectorDraw.h:22
 TSelectorDraw.h:23
 TSelectorDraw.h:24
 TSelectorDraw.h:25
 TSelectorDraw.h:26
 TSelectorDraw.h:27
 TSelectorDraw.h:28
 TSelectorDraw.h:29
 TSelectorDraw.h:30
 TSelectorDraw.h:31
 TSelectorDraw.h:32
 TSelectorDraw.h:33
 TSelectorDraw.h:34
 TSelectorDraw.h:35
 TSelectorDraw.h:36
 TSelectorDraw.h:37
 TSelectorDraw.h:38
 TSelectorDraw.h:39
 TSelectorDraw.h:40
 TSelectorDraw.h:41
 TSelectorDraw.h:42
 TSelectorDraw.h:43
 TSelectorDraw.h:44
 TSelectorDraw.h:45
 TSelectorDraw.h:46
 TSelectorDraw.h:47
 TSelectorDraw.h:48
 TSelectorDraw.h:49
 TSelectorDraw.h:50
 TSelectorDraw.h:51
 TSelectorDraw.h:52
 TSelectorDraw.h:53
 TSelectorDraw.h:54
 TSelectorDraw.h:55
 TSelectorDraw.h:56
 TSelectorDraw.h:57
 TSelectorDraw.h:58
 TSelectorDraw.h:59
 TSelectorDraw.h:60
 TSelectorDraw.h:61
 TSelectorDraw.h:62
 TSelectorDraw.h:63
 TSelectorDraw.h:64
 TSelectorDraw.h:65
 TSelectorDraw.h:66
 TSelectorDraw.h:67
 TSelectorDraw.h:68
 TSelectorDraw.h:69
 TSelectorDraw.h:70
 TSelectorDraw.h:71
 TSelectorDraw.h:72
 TSelectorDraw.h:73
 TSelectorDraw.h:74
 TSelectorDraw.h:75
 TSelectorDraw.h:76
 TSelectorDraw.h:77
 TSelectorDraw.h:78
 TSelectorDraw.h:79
 TSelectorDraw.h:80
 TSelectorDraw.h:81
 TSelectorDraw.h:82
 TSelectorDraw.h:83
 TSelectorDraw.h:84
 TSelectorDraw.h:85
 TSelectorDraw.h:86
 TSelectorDraw.h:87
 TSelectorDraw.h:88
 TSelectorDraw.h:89
 TSelectorDraw.h:90
 TSelectorDraw.h:91
 TSelectorDraw.h:92
 TSelectorDraw.h:93
 TSelectorDraw.h:94
 TSelectorDraw.h:95
 TSelectorDraw.h:96
 TSelectorDraw.h:97
 TSelectorDraw.h:98
 TSelectorDraw.h:99
 TSelectorDraw.h:100
 TSelectorDraw.h:101
 TSelectorDraw.h:102
 TSelectorDraw.h:103
 TSelectorDraw.h:104
 TSelectorDraw.h:105
 TSelectorDraw.h:106
 TSelectorDraw.h:107
 TSelectorDraw.h:108
 TSelectorDraw.h:109
 TSelectorDraw.h:110
 TSelectorDraw.h:111
 TSelectorDraw.h:112
 TSelectorDraw.h:113
 TSelectorDraw.h:114
 TSelectorDraw.h:115
 TSelectorDraw.h:116
 TSelectorDraw.h:117
 TSelectorDraw.h:118
 TSelectorDraw.h:119
 TSelectorDraw.h:120
 TSelectorDraw.h:121
 TSelectorDraw.h:122
 TSelectorDraw.h:123
 TSelectorDraw.h:124