#if !defined HCONDITIONOUT_H
#define HCONDITIONOUT_H
#include "TList.h"
class HConditionOut : public TObject {
protected:
Bool_t kTrueFlag;
TList *fLocList;
TList *fIdxList;
Int_t count1;
Int_t count2;
Int_t countS;
public:
HConditionOut();
virtual ~HConditionOut();
Bool_t getTrueFlag() { return kTrueFlag; }
void setTrueFlag() { kTrueFlag = kTRUE; }
TList* getLocList() const { return fLocList; }
TList* getIdxList() const { return fIdxList; }
Bool_t init();
Int_t getCount(Int_t number);
void incCount(Int_t number);
void clearCounts() { count1 = count2 = countS = 0; kTrueFlag = kFALSE; }
void clearList();
public:
ClassDef(HConditionOut,0)
};
#endif
Last change: Sat May 22 12:53:57 2010
Last generated: 2010-05-22 12:53
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.