ROOT logo
// $Id$
//
// Container and interface class to store and return local energy density
// parameter rho. The global rho value can be obtained via the members of AliRhoParameter,
// in addition this class provides rho as a function (TF1) of one parameter (denoted as phi).
// A local value of rho is evaluated in area phi-r, phi+r where r is a user defined
// parameter (e.g. a jet radius)
// Functions are implemented inline for optimization.
//
// Author: Redmer Alexander Bertens, Utrecht University, Utrecht, Netherlands
//         (rbertens@cern.ch, rbertens@nikhef.nl, r.a.bertens@uu.nl)

#include "AliRhoParameter.h"
#include "AliLocalRhoParameter.h"

ClassImp(AliLocalRhoParameter)

//________________________________________________________________________
AliLocalRhoParameter::AliLocalRhoParameter() : 
  AliRhoParameter(),
  fLocalRho(0) 
{ 
  // Constructor for root IO. 
}

//________________________________________________________________________
AliLocalRhoParameter::AliLocalRhoParameter(const char* name, Double_t val) : 
  AliRhoParameter(name, val), 
  fLocalRho(0x0)
{ 
  // Constructor
}
 AliLocalRhoParameter.cxx:1
 AliLocalRhoParameter.cxx:2
 AliLocalRhoParameter.cxx:3
 AliLocalRhoParameter.cxx:4
 AliLocalRhoParameter.cxx:5
 AliLocalRhoParameter.cxx:6
 AliLocalRhoParameter.cxx:7
 AliLocalRhoParameter.cxx:8
 AliLocalRhoParameter.cxx:9
 AliLocalRhoParameter.cxx:10
 AliLocalRhoParameter.cxx:11
 AliLocalRhoParameter.cxx:12
 AliLocalRhoParameter.cxx:13
 AliLocalRhoParameter.cxx:14
 AliLocalRhoParameter.cxx:15
 AliLocalRhoParameter.cxx:16
 AliLocalRhoParameter.cxx:17
 AliLocalRhoParameter.cxx:18
 AliLocalRhoParameter.cxx:19
 AliLocalRhoParameter.cxx:20
 AliLocalRhoParameter.cxx:21
 AliLocalRhoParameter.cxx:22
 AliLocalRhoParameter.cxx:23
 AliLocalRhoParameter.cxx:24
 AliLocalRhoParameter.cxx:25
 AliLocalRhoParameter.cxx:26
 AliLocalRhoParameter.cxx:27
 AliLocalRhoParameter.cxx:28
 AliLocalRhoParameter.cxx:29
 AliLocalRhoParameter.cxx:30
 AliLocalRhoParameter.cxx:31
 AliLocalRhoParameter.cxx:32