ROOT logo
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */

/* $Id: AliFlowLYZConstants.h 25556 2008-05-02 08:22:51Z snelling $ */

#ifndef ALIFLOWLYZCONSTANTS_H
#define ALIFLOWLYZCONSTANTS_H

#include <TROOT.h>

// Description: constants for the LYZ flow makers

#include <TNamed.h>

class AliFlowLYZConstants : public TNamed {

public:
  AliFlowLYZConstants();
  virtual ~AliFlowLYZConstants();

  static AliFlowLYZConstants* GetMaster();

  Int_t GetNtheta() const {return fNtheta;}
  Int_t GetNbins() const {return fNbins;}
  Double_t GetMaxSUM() const {return fMaxSUM;}
  Double_t GetMaxPROD() const {return fMaxPROD;}

private:
  AliFlowLYZConstants& operator= (const AliFlowLYZConstants& c);
  AliFlowLYZConstants(const AliFlowLYZConstants& a);

  //data members
  Int_t fNtheta;     // number of reference angles theta
  Int_t fNbins;      // number of bins in fHistGtheta (AliFlowLYZHist1)
  Double_t  fMaxSUM;   // upper limit for fHistGtheta (AliFlowLYZHist1)
  Double_t  fMaxPROD;   // upper limit for fHistGtheta (AliFlowLYZHist1)

  static AliFlowLYZConstants* fgPMasterConfig;
  
  ClassDef(AliFlowLYZConstants,1)  // macro for rootcint 
};

#endif

 AliFlowLYZConstants.h:1
 AliFlowLYZConstants.h:2
 AliFlowLYZConstants.h:3
 AliFlowLYZConstants.h:4
 AliFlowLYZConstants.h:5
 AliFlowLYZConstants.h:6
 AliFlowLYZConstants.h:7
 AliFlowLYZConstants.h:8
 AliFlowLYZConstants.h:9
 AliFlowLYZConstants.h:10
 AliFlowLYZConstants.h:11
 AliFlowLYZConstants.h:12
 AliFlowLYZConstants.h:13
 AliFlowLYZConstants.h:14
 AliFlowLYZConstants.h:15
 AliFlowLYZConstants.h:16
 AliFlowLYZConstants.h:17
 AliFlowLYZConstants.h:18
 AliFlowLYZConstants.h:19
 AliFlowLYZConstants.h:20
 AliFlowLYZConstants.h:21
 AliFlowLYZConstants.h:22
 AliFlowLYZConstants.h:23
 AliFlowLYZConstants.h:24
 AliFlowLYZConstants.h:25
 AliFlowLYZConstants.h:26
 AliFlowLYZConstants.h:27
 AliFlowLYZConstants.h:28
 AliFlowLYZConstants.h:29
 AliFlowLYZConstants.h:30
 AliFlowLYZConstants.h:31
 AliFlowLYZConstants.h:32
 AliFlowLYZConstants.h:33
 AliFlowLYZConstants.h:34
 AliFlowLYZConstants.h:35
 AliFlowLYZConstants.h:36
 AliFlowLYZConstants.h:37
 AliFlowLYZConstants.h:38
 AliFlowLYZConstants.h:39
 AliFlowLYZConstants.h:40
 AliFlowLYZConstants.h:41
 AliFlowLYZConstants.h:42
 AliFlowLYZConstants.h:43
 AliFlowLYZConstants.h:44