Line data Source code
1 : #ifndef ALIHMPIDPIDPARAMS_H
2 : #define ALIHMPIDPIDPARAMS_H
3 : /* Copyright(c) 1998-2010, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : //***********************************************************
7 : // Class AliHMPIDPIDparams
8 : // class to store PID parameters for HMPID in OADB
9 : // Author: G. Volpe, giacomo.volpe@cern.ch
10 : //***********************************************************
11 :
12 : #include <TNamed.h>
13 :
14 : class TObjArray;
15 :
16 : class AliHMPIDPIDParams : public TNamed {
17 :
18 : public:
19 : AliHMPIDPIDParams();
20 : AliHMPIDPIDParams(Char_t * name);
21 : AliHMPIDPIDParams& operator= (const AliHMPIDPIDParams& c);
22 : AliHMPIDPIDParams(const AliHMPIDPIDParams& c);
23 : virtual ~AliHMPIDPIDParams();
24 :
25 0 : TObjArray* GetHMPIDrefIndex() const {return fHMPIDRefIndexArray;}
26 0 : void SetHMPIDrefIndex(TObjArray *array) {fHMPIDRefIndexArray = array;}
27 :
28 : private:
29 : TObjArray *fHMPIDRefIndexArray; // C6F14 refractive index
30 :
31 176 : ClassDef(AliHMPIDPIDParams,1);
32 :
33 : };
34 :
35 : #endif
36 :
|