#if !defined HONLINECONTROL_H
#define HONLINECONTROL_H
#include "TObject.h"
class HDetSetCont;
class HLocalCont;
class HGlobalCont;
class HHistoCont;
class HContourCont;
class HConsistency;
class HMemoryCheck;
class HOnlineControl : public TObject {
protected:
HDetSetCont *fDetSet;
HLocalCont *fLocal;
HGlobalCont *fGlobal;
HHistoCont *fHisto;
HContourCont *fContour;
HConsistency *fConsistency;
HMemoryCheck *fMemCheck;
Char_t savefile[200];
public:
HOnlineControl();
virtual ~HOnlineControl();
Bool_t init();
Bool_t read();
void write();
HDetSetCont* getDetSet() const { return fDetSet; }
HLocalCont* getLocal() const { return fLocal; }
HGlobalCont* getGlobal() const { return fGlobal; }
HHistoCont* getHisto() const { return fHisto; }
HContourCont* getContour() const { return fContour; }
HConsistency* getConsistency() const { return fConsistency; }
HMemoryCheck* getMemCheck() const { return fMemCheck; }
void setSaveFile(const Char_t* name) { if(name) sprintf(savefile,"%s",name); }
public:
ClassDef(HOnlineControl,1)
};
R__EXTERN HOnlineControl *gOnline;
#endif
Last change: Sat May 22 13:05:01 2010
Last generated: 2010-05-22 13:05
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.