]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG2/FLOW/AliFlowCommonHistResults.h
a few more empty newlines at the end of the files
[u/mrichter/AliRoot.git] / PWG2 / FLOW / AliFlowCommonHistResults.h
CommitLineData
f1d945a1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
f1d945a1 4
5#ifndef AliFlowCommonHistResults_H
6#define AliFlowCommonHistResults_H
7
8class TH1F;
9class TH1D;
10
11// AliFlowCommonHistResults:
12// Class to organize the common histograms for Flow Analysis
13// authors: N. van der Kolk (kolk@nikhef.nl) and A. Bilandzic (anteb@nikhef.nl)
14
15class AliFlowCommonHistResults{
16
17 public:
18
19 AliFlowCommonHistResults(TString input);
20 virtual ~AliFlowCommonHistResults();
21
22 //make fill methods here
23 Bool_t FillIntegratedFlow(Double_t fV, Double_t fError);
24 Bool_t FillDifferentialFlow(Int_t fBin, Double_t fv, Double_t fError);
25 Bool_t FillChi(Double_t fChi);
26
27 //make get methods here
28 TH1D* GetfHistDiffFlow() {return fHistDiffFlow; } ;
29 TH1D* GetfHistChi() {return fHistChi; } ;
30 TH1D* GetfHistIntFlow() {return fHistIntFlow; } ;
31
32 private:
33
34 //integrated flow
35 TH1D* fHistIntFlow; //!
36 //differential flow
37 TH1D* fHistDiffFlow; //!
38 //resolution
39 TH1D* fHistChi; //!
40
41 ClassDef(AliFlowCommonHistResults,0) // macro for rootcint
42};
43
0683b7d5 44#endif
45