]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/trigger/AliHLTFastJetMonitor.h
Removing obsolete macros
[u/mrichter/AliRoot.git] / HLT / trigger / AliHLTFastJetMonitor.h
1 #ifndef ALIHLTFASTJETMONITOR_H
2 #define ALIHLTFASTJETMONITOR_H
3
4 #include "TH1F.h"
5 #include "TObjArray.h"
6 #include "TString.h"
7 #include "AliHLTScalars.h"
8
9 class AliHLTFastJetMonitor : public TObject
10 {
11
12  public:
13   // constructor
14   AliHLTFastJetMonitor();
15
16   // destructor
17   virtual ~AliHLTFastJetMonitor();
18
19   // make histos
20   Int_t MakeHisto(AliHLTScalars *scalar);
21
22   // retrieve histograms
23   TObjArray* GetHistograms();
24
25  private:
26   TObjArray *hList;
27   TH1F      *hTracksPt;
28   TH1F      *hClusterEn;
29   TH1F      *hClusterEta;
30   TH1F      *hClusterPhi;
31   TH1F      *hJetsPt;
32
33   AliHLTFastJetMonitor(const AliHLTFastJetMonitor &);
34   AliHLTFastJetMonitor & operator = (const AliHLTFastJetMonitor &);
35
36   ClassDef(AliHLTFastJetMonitor, 0);
37
38 };
39
40 #endif
41
42