]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HBTAN/AliHBTQDistributionVsKtFctns.cxx
No optimization with gcc 4.3.0
[u/mrichter/AliRoot.git] / HBTAN / AliHBTQDistributionVsKtFctns.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18
19 //__________________________________________________________________
20 ////////////////////////////////////////////////////////////////////
21 //                                                                //
22 // class AliHBTQInvDistributionVsKtFctn                           //
23 // class AliHBTQOutDistributionVsKtFctn                           //
24 // class AliHBTQSideDistributionVsKtFctn                          //
25 // class AliHBTQLongDistributionVsKtFctn                          //
26 //                                                                //
27 // Classes for Q's monitoring Vs Kt and Vs Qinv                   //
28 //                                                                //
29 // Author:                                                        //
30 // Zbigniew Chajecki <chajecki@if.pw.edu.pl>                      //
31 //                                                                //
32 ////////////////////////////////////////////////////////////////////
33
34 /******************************************************************/
35 /******************************************************************/
36
37 #include "AliHBTQDistributionVsKtFctns.h"
38
39 ClassImp( AliHBTQInvDistributionVsKtFctn )
40
41 AliHBTQInvDistributionVsKtFctn::AliHBTQInvDistributionVsKtFctn(Int_t nXbins, Double_t maxXval, Double_t minXval, 
42                                                                Int_t nYbins, Double_t maxYval, Double_t minYval):
43  AliHBTOnePairFctn2D(nXbins,maxXval,minXval,nYbins,maxYval,minYval)
44 {
45  //ctor
46  Rename("QInvDistributionVsKt","Q_{Inv} Distribution vs. K_{t}");
47 }
48 /******************************************************************/
49
50 TH1* AliHBTQInvDistributionVsKtFctn::GetResult()
51 {
52  //returns the result histo
53  return this->GetNumerator();
54 }
55
56 /******************************************************************/
57 /******************************************************************/
58
59 ClassImp( AliHBTQOutDistributionVsKtFctn )
60
61 AliHBTQOutDistributionVsKtFctn::AliHBTQOutDistributionVsKtFctn(Int_t nXbins, Double_t maxXval, Double_t minXval, 
62                                                                Int_t nYbins, Double_t maxYval, Double_t minYval):
63  AliHBTOnePairFctn2D(nXbins,maxXval,minXval,nYbins,maxYval,minYval)
64 {
65  //ctor
66  Rename("QOutDistributionVsKt","Q_{Out} Distribution vs. K_{t}");
67 }
68 /******************************************************************/
69
70 TH1* AliHBTQOutDistributionVsKtFctn::GetResult()
71 {
72  //returns the result histo
73  return this->GetNumerator();
74 }
75
76 /******************************************************************/
77 /******************************************************************/
78
79 ClassImp( AliHBTQSideDistributionVsKtFctn )
80
81 AliHBTQSideDistributionVsKtFctn::AliHBTQSideDistributionVsKtFctn(Int_t nXbins, Double_t maxXval, Double_t minXval, 
82                                                                  Int_t nYbins, Double_t maxYval, Double_t minYval):
83  AliHBTOnePairFctn2D(nXbins,maxXval,minXval,nYbins,maxYval,minYval)
84 {
85  //ctor
86  Rename("QSideDistributionVsKt","Q_{Side} Distribution vs. K_{t}");
87 }
88 /******************************************************************/
89
90 TH1* AliHBTQSideDistributionVsKtFctn::GetResult()
91 {
92  //returns the result histo
93  return this->GetNumerator();
94 }
95
96 /******************************************************************/
97 /******************************************************************/
98
99 ClassImp( AliHBTQLongDistributionVsKtFctn )
100
101 AliHBTQLongDistributionVsKtFctn::AliHBTQLongDistributionVsKtFctn(Int_t nXbins, Double_t maxXval, Double_t minXval, 
102                                                                  Int_t nYbins, Double_t maxYval, Double_t minYval):
103  AliHBTOnePairFctn2D(nXbins,maxXval,minXval,nYbins,maxYval,minYval)
104 {
105  //ctor
106  Rename("QLongDistributionVsKt","Q_{Long} Distribution vs. K_{t}");
107 }
108 /******************************************************************/
109
110 TH1* AliHBTQLongDistributionVsKtFctn::GetResult()
111 {
112  //returns the result histo
113  return this->GetNumerator();
114 }
115