#if !defined HDISPLAYDB_H
#define HDISPLAYDB_H
#include "TObjArray.h"
class HHistogram;
class HDisplayDB : public TObject {
public:
TObjArray *fContainer;
public:
HDisplayDB() { fContainer = new TObjArray(1000); }
virtual ~HDisplayDB() { fContainer->Delete(); delete fContainer; }
Bool_t add(HHistogram *p);
HHistogram *at(Int_t idx);
Int_t getEntries();
Int_t find(const Char_t* name);
void import(const Char_t* filename);
public:
ClassDef(HDisplayDB,0)
};
#endif
Last change: Sat May 22 12:54:49 2010
Last generated: 2010-05-22 12:54
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.