]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/AliMonitor.h
Syntax fixes for the xlc compiler on MacOSX
[u/mrichter/AliRoot.git] / MONITOR / AliMonitor.h
1 #ifndef ALIMONITOR_H
2 #define ALIMONITOR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 #include <TObject.h>
9 #include "AliMonitorHisto.h"
10
11 class TFolder;
12 class TTree;
13 class AliRunLoader;
14 class AliRawReader;
15 class AliMonitorTrend;
16
17
18 class AliMonitor : public TObject {
19 public:
20   AliMonitor();
21   AliMonitor(const AliMonitor& monitor);
22   AliMonitor& operator = (const AliMonitor& monitor);
23   virtual ~AliMonitor() {};
24
25   virtual void     CreateHistos(TFolder* folder) = 0;
26   virtual void     CreateBranches(TTree* tree);
27   virtual void     FillHistos(AliRunLoader* runLoader, 
28                               AliRawReader* rawReader) = 0;
29
30 protected:
31   TFolder*         fFolder;    // sub folder for monitor histograms
32
33   AliMonitorHisto* CreateHisto1(const char* name, const char* title,
34                                 Int_t xBins, Double_t xMin, Double_t xMax,
35                                 const char* xTitle, const char* yTitle,
36                                 AliMonitorHisto::ENorm norm);
37   AliMonitorHisto* CreateHisto2(const char* name, const char* title,
38                                 Int_t xBins, Double_t xMin, Double_t xMax,
39                                 Int_t yBins, Double_t yMin, Double_t yMax,
40                                 const char* xTitle, const char* yTitle,
41                                 const char* zTitle,
42                                 AliMonitorHisto::ENorm norm);
43   AliMonitorTrend* CreateTrend(const char* name, const char* title,
44                                const char* label, 
45                                Double_t min = 0, Double_t max = 0);
46
47   ClassDef(AliMonitor, 0)   // base class for the creation and filling of monitor histograms
48 };
49  
50
51 #endif
52
53
54
55
56
57
58
59
60