#ifndef HORADETRUNINFOIO_H
#define HORADETRUNINFOIO_H
using namespace std;
#include "TObject.h"
#include "TString.h"
class HDbConn;
class HOraDetRunInfoIo : public TObject {
private:
HDbConn* pConn;
Bool_t hasErrors;
Int_t numChanges;
public:
HOraDetRunInfoIo();
~HOraDetRunInfoIo();
Bool_t open(const Char_t*,const Char_t* dbName="db-hades");
void close();
void print();
Bool_t isOpen();
Int_t getNumChanges() {return numChanges;}
Bool_t setDetector(const Char_t*);
Int_t createComment(const Char_t*,const Char_t*);
Bool_t setRunQuality(const Char_t*,Int_t,Int_t);
void finish();
void rollback();
private:
void commit();
ClassDef(HOraDetRunInfoIo,0)
};
#endif /* !HORADETRUNINFOIO */
Last change: Sat May 22 13:05:03 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.