]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCMonitorDateMonitor.h
The package was overwriting the rootcint flags. This was fixed by applying the necess...
[u/mrichter/AliRoot.git] / TPC / AliTPCMonitorDateMonitor.h
CommitLineData
48265b32 1#ifndef ALITPCMONITORDATEMONITOR_H
2#define ALITPCMONITORDATEMONITOR_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9
10////////////////////////////////////////////////////////////////////////
11//
12// AliTPCMonitorDateMonitor class
13//
14// Monitoring wrapper class for DATE monitoring
15//
16// Authors: Roland Bramm,
17// Stefan Kniege, IKF, Frankfurt
18//
19/////////////////////////////////////////////////////////////////////////
20
21#include <string>
48265b32 22#include "TNamed.h"
23
24using namespace std;
25
26class AliTPCMonitorDateMonitor : public TNamed {
27
28 public:
29 AliTPCMonitorDateMonitor();
30 ~AliTPCMonitorDateMonitor();
31
32 void Free();
33 Int_t OpenMonitoring(string name);
34 Char_t* DecodeError(int error);
35 Int_t DeclareMonitor(string name);
36 Int_t FlushEvents();
37 Int_t GetEvent();
38 Char_t *GetEventPointerasChar();
39 Int_t Logout();
40
41 private:
42
43 Char_t *fPointer; // pointer to event
44
45 ClassDef(AliTPCMonitorDateMonitor,1);
46};
47#endif