]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGJE/EMCALJetTasks/AliRhoParameter.h
Charged jets (pPb): Improved trackcut analysis
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliRhoParameter.h
CommitLineData
be5a9cc9 1#ifndef ALIRHOPARAMETER_H
2#define ALIRHOPARAMETER_H
3
907588c9 4// $Id$
be5a9cc9 5
6class TString;
7class TF1;
8
9#include <TParameter.h>
10
11class AliRhoParameter : public TParameter<Double_t> {
12 public:
13 AliRhoParameter();
14 AliRhoParameter(const char *name, Double_t val=0);
15 void Clear(Option_t *option="");
16
17private:
18 AliRhoParameter(const AliRhoParameter&); // not implemented
19 AliRhoParameter& operator=(const AliRhoParameter&); // not implemented
20
21 ClassDef(AliRhoParameter, 1); // Rho parameter
22};
23#endif