]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MONITOR/AliMonitor.h
Radius of PHOS equal to 460 (Y.Schutz)
[u/mrichter/AliRoot.git] / MONITOR / AliMonitor.h
CommitLineData
04fa961a 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>
04fa961a 9#include "AliMonitorHisto.h"
c4bd737c 10
11class TFolder;
12class TTree;
13class AliRunLoader;
14class AliRawReader;
15class AliMonitorTrend;
04fa961a 16
17
18class AliMonitor : public TObject {
19public:
c4bd737c 20 AliMonitor();
21 AliMonitor(const AliMonitor& monitor);
22 AliMonitor& operator = (const AliMonitor& monitor);
23 virtual ~AliMonitor() {};
24
04fa961a 25 virtual void CreateHistos(TFolder* folder) = 0;
26 virtual void CreateBranches(TTree* tree);
27 virtual void FillHistos(AliRunLoader* runLoader,
28 AliRawReader* rawReader) = 0;
29
30protected:
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