#if !defined HLOCALCONT_H
#define HLOCALCONT_H
#include "TObjArray.h"
class HLocalCondition;
class HLocalCont : public TObject {
protected:
TObjArray *fLocalAr;
public:
HLocalCont();
virtual ~HLocalCont();
Bool_t init();
Bool_t add(HLocalCondition *p);
Bool_t addAt(HLocalCondition *p, Int_t idx);
HLocalCondition* 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 fLocalAr; }
public:
ClassDef(HLocalCont,1)
};
#endif
Last change: Sat May 22 12:59:01 2010
Last generated: 2010-05-22 12:59
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.