#ifndef HTREE_H
#define HTREE_H

#include "TTree.h"
#include "TBranch.h"

class HTree : public TTree {
public:
  HTree(void);
  HTree(const Text_t* name,const  Text_t* title, Int_t maxvirtualsize = 0);
  ~HTree(void);
  TBranch *GetBranch(const Char_t * name);
  void  printContainerSizes(void);
  virtual Int_t MakeCode(const Char_t* filename = 0);

  ClassDef(HTree,1) //TTree implementing a modified split algorithm
};

R__EXTERN TTree *gTree;
#endif /* !HTREE_H */





Last change: Sat May 22 13:17:06 2010
Last generated: 2010-05-22 13:17

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.