]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGJE/EMCALJetTasks/AliRhoParameter.h
create general emcal task lib
[u/mrichter/AliRoot.git] / PWGJE / EMCALJetTasks / AliRhoParameter.h
1 #ifndef ALIRHOPARAMETER_H
2 #define ALIRHOPARAMETER_H
3
4 // $Id$
5
6 class TString;
7 class TF1;
8
9 #include <TParameter.h>
10
11 class 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
17 private:
18   AliRhoParameter(const AliRhoParameter&);             // not implemented
19   AliRhoParameter& operator=(const AliRhoParameter&);  // not implemented
20   
21   ClassDef(AliRhoParameter, 1); // Rho parameter
22 };
23 #endif