]> git.uio.no Git - u/mrichter/AliRoot.git/blob - JETAN/AliJetHistos.h
Macro to plot results from pwg1-QA SPD task (A. Mastroserio)
[u/mrichter/AliRoot.git] / JETAN / AliJetHistos.h
1 #ifndef ALIJETHISTOS_H
2 #define ALIJETHISTOS_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 class Tlist;
8 class TClonesArray;
9 class TH1I;
10 class TH1F;
11
12 class AliJetHistos : public TObject {
13  public:
14   AliJetHistos();
15   ~AliJetHistos();
16
17   void AddHistosToList(TList *list);
18   void FillHistos(TClonesArray *jets);
19   
20  private:
21   void SetProperties(TH1* h,const char* x, const char* y) const;
22   AliJetHistos(const AliJetHistos &det);
23   AliJetHistos &operator=(const AliJetHistos &det);
24  private:
25
26   TH1I *fNJetsH;   // distribution of number of jets
27   TH1F *fPtH;      // pt spectra
28   TH1F *fEtaH;     // eta distribution
29   TH1F *fEneH;     // energy distribution
30   TH1F *fPhiH;     // phi distribution
31
32
33   ClassDef(AliJetHistos,1)
34 };
35
36 #endif
37