#ifndef ROOT_TNodeDiv
#define ROOT_TNodeDiv
#ifndef ROOT_TNode
#include "TNode.h"
#endif
class TNodeDiv  : public TNode {
protected:
   Int_t           fNdiv;        
   Int_t           fAxis;        
public:
   TNodeDiv();
   TNodeDiv(const char *name, const char *title, const char *shapename, Int_t ndiv, Int_t axis, Option_t *option="");
   TNodeDiv(const char *name, const char *title, TShape *shape, Int_t ndiv, Int_t axis, Option_t *option="");
   virtual ~TNodeDiv();
   virtual void             Draw(Option_t *option="");
   virtual void             Paint(Option_t *option="");
   ClassDef(TNodeDiv,1)  
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.