]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecoParam.h
eff C++ warnings corrected.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecoParam.h
CommitLineData
58f66025 1#ifndef ALIPHOSRECOPARAM_H
2#define ALIPHOSRECOPARAM_H
3/* Copyright(c) 2007, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8// Base class for the PHOS reconstruction parameters.
9// Do not use in the reconstruction; use derivative classes instead.
10
11#include "TNamed.h"
12
13
14class AliPHOSRecoParam : public TNamed {
15
16public:
17
18 AliPHOSRecoParam();
19 AliPHOSRecoParam(const AliPHOSRecoParam& recoParam);
20 AliPHOSRecoParam& operator = (const AliPHOSRecoParam& recoParam);
21 virtual ~AliPHOSRecoParam() {}
22
23 Float_t GetClusteringThreshold() const { return fClusteringThreshold; }
24 Float_t GetLocalMaxCut() const { return fLocMaxCut;}
25 Float_t GetMinE() const { return fMinE; }
26 Float_t GetLogWeight() const { return fW0; }
27
28 void SetClusteringThreshold(Float_t cluth) { fClusteringThreshold=cluth; }
29 void SetLocalMaxCut(Float_t cut) { fLocMaxCut=cut;}
30 void SetMinE(Float_t minE) { fMinE=minE; }
31 void SetLogWeight(Float_t w) { fW0=w; }
32
33protected:
34
35 Float_t fClusteringThreshold;
36 Float_t fLocMaxCut;
37 Float_t fMinE;
38 Float_t fW0;
39
40 ClassDef(AliPHOSRecoParam,1)
41};
42
43#endif