// @(#)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. // // // ////////////////////////////////////////////////////////////////////////// #include "TSelector.h" #include class TTreeFormula; class TTreeFormulaManager; class TH1; class TEntryListArray; class TSelectorDraw : public TSelector { protected: enum EStatusBits { kWarn = BIT(12) }; TTree *fTree; ///< Pointer to current Tree TTreeFormula **fVar; /// &names); virtual void TakeAction(); virtual void TakeEstimate(); void Terminate() override; ClassDefOverride(TSelectorDraw,1); //A specialized TSelector for TTree::Draw }; #endif