]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGJE/EMCALJetTasks/AliRhoParameter.cxx
move EMCALJetTasks from PWGGA to PWGJE
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliRhoParameter.cxx
CommitLineData
907588c9 1// $Id$
be5a9cc9 2//
3// Parameter class with a Clear.
4//
5// Author: C.Loizides
6
7#include "AliRhoParameter.h"
8
9ClassImp(AliRhoParameter)
10
11//________________________________________________________________________
12AliRhoParameter::AliRhoParameter() :
13 TParameter<Double_t>()
14{
15 // Dummy constructor.
16}
17
18//________________________________________________________________________
19AliRhoParameter::AliRhoParameter(const char *name, Double_t val) :
20 TParameter<Double_t>(name,val)
21{
22 // Constructor.
23}
24
25//________________________________________________________________________
26void AliRhoParameter::Clear(Option_t * /*option*/)
27{
28 // Clear.
29
30 SetVal(0);
31}