#ifndef HTASKSET_H
#define HTASKSET_H
#include "THashList.h"
#include "THashTable.h"
#include "TOrdCollection.h"
#include "htask.h"
class HTaskSet : public HTask {
protected:
TOrdCollection fTasks;
HTask *fNextTask;
HTask *fFirstTask;
Int_t ids[8];
public:
HTaskSet(void);
HTaskSet(HTaskSet &ts);
HTaskSet(const Text_t name[],const Text_t title[]);
~HTaskSet(void);
Bool_t init(void);
Bool_t finalize(void);
Bool_t reinit(void);
Bool_t add(HTask *);
Bool_t connect(HTask *);
Bool_t connect(HTask *,HTask *,Int_t n = kGOFORWARD);
Bool_t connect(HTask *,const Text_t *where,Int_t n = kGOFORWARD);
Bool_t connect(const Text_t task[],const Text_t where[],Int_t n=0);
Bool_t connectTask(HTask *,Int_t n);
void Clear(Option_t *opt="");
HTask *make(const Char_t *select="",const Option_t *option="") {return 0;}
HTask *next(Int_t &errCode);
HTask *next(Int_t &errCode, Int_t id);
HTask *operator()(Int_t &errCode) {return next(errCode);}
HTask* getComposite() {return this;}
TOrdCollection* getSetOfTask() {return &fTasks;}
HTask* getTask(const Char_t *name);
void print();
Bool_t IsFolder(void) const;
void Browse(TBrowser *b);
void isTimed(Bool_t flag=kTRUE);
void resetTimer(void);
void printTimer(void);
void setIds(Int_t i0, Int_t i1=-1, Int_t i2=-1, Int_t i3=-1, Int_t i4=-1,
Int_t i5=-1, Int_t i6=-1, Int_t i7=-1);
Int_t* getIds(Int_t &size){size=sizeof(ids)/sizeof(Int_t);return &ids[0];}
ClassDef(HTaskSet,2)
};
#endif /* !HTASKSET_H */
Last change: Sat May 22 13:15:28 2010
Last generated: 2010-05-22 13:15
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.