]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGJE/EMCALJetTasks/AliLocalRhoParameter.cxx
allow defining a fraction of particles as neutral
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliLocalRhoParameter.cxx
CommitLineData
aad3da32 1// $Id$
2//
3// Container and interface class to store and return local energy density
4// parameter rho. The global rho value can be obtained via the members of AliRhoParameter,
5// in addition this class provides rho as a function (TF1) of one parameter (denoted as phi).
6// A local value of rho is evaluated in area phi-r, phi+r where r is a user defined
7// parameter (e.g. a jet radius)
8// Functions are implemented inline for optimization.
9//
10// Author: Redmer Alexander Bertens, Utrecht University, Utrecht, Netherlands
11// (rbertens@cern.ch, rbertens@nikhef.nl, r.a.bertens@uu.nl)
12
13#include "AliRhoParameter.h"
14#include "AliLocalRhoParameter.h"
15
16ClassImp(AliLocalRhoParameter)
17
18//________________________________________________________________________
19AliLocalRhoParameter::AliLocalRhoParameter() :
20 AliRhoParameter(),
21 fLocalRho(0)
22{
23 // Constructor for root IO.
24}
25
26//________________________________________________________________________
27AliLocalRhoParameter::AliLocalRhoParameter(const char* name, Double_t val) :
28 AliRhoParameter(name, val),
29 fLocalRho(0x0)
30{
31 // Constructor
32}