#if !defined HGLOBALCONT_H
#define HGLOBALCONT_H
#include "TObjArray.h"
class HGlobalCondition;
class HGlobalCont : public TObject {
protected:
TObjArray *fGlobalAr;
public:
HGlobalCont() : TObject() { fGlobalAr = 0; }
virtual ~HGlobalCont();
Bool_t init();
Bool_t add(HGlobalCondition *p);
Bool_t addAt(HGlobalCondition *p, Int_t idx);
HGlobalCondition* at(Int_t idx);
Int_t getEntries();
Int_t find(const Char_t* name);
void removeAt(Int_t idx, Bool_t kSulSerio = kTRUE);
void checkConsistency();
TObjArray* getArray() const { return fGlobalAr; }
public:
ClassDef(HGlobalCont,1)
};
#endif
Last change: Sat May 22 12:56:56 2010
Last generated: 2010-05-22 12:56
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.