]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG/FLOW/Base/AliFlowLYZConstants.cxx
Merge branch 'feature-movesplit'
[u/mrichter/AliRoot.git] / PWG / FLOW / Base / AliFlowLYZConstants.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 /*
17 $Log$
18 */ 
19
20 #include <TNamed.h> 
21 #include "AliFlowLYZConstants.h" 
22
23 ClassImp(AliFlowLYZConstants)
24 // AliFlowLYZConstant:
25 // Description: constants for the LYZ flow analysis
26 // Author: Naomi van der Kolk (kolk@nikhef.nl)
27 // modified: Mikolaj Krzewicki, Nikhef (mikolaj.krzewicki@cern.ch)
28
29 AliFlowLYZConstants* AliFlowLYZConstants::fgPMasterConfig = NULL;
30
31 //______________________________________________________________________________
32 AliFlowLYZConstants::AliFlowLYZConstants():
33   TNamed(),
34   fNtheta(5),
35   fNbins(2500),
36   fMaxSUM(250.),
37   fMaxPROD(1.)
38 {
39   //def ctor
40 }
41
42 //______________________________________________________________________________
43 AliFlowLYZConstants::~AliFlowLYZConstants()
44 {
45   //dtor
46 }
47
48 //______________________________________________________________________________
49 AliFlowLYZConstants* AliFlowLYZConstants::GetMaster()
50 {
51   //get global master config
52   if (!fgPMasterConfig) fgPMasterConfig = new AliFlowLYZConstants();
53   return fgPMasterConfig;
54 }