]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/Cal/AliTRDCalDCSPTR.h
coverity fix
[u/mrichter/AliRoot.git] / TRD / Cal / AliTRDCalDCSPTR.h
1 #ifndef ALITRDCALDCSPTR_H
2 #define ALITRDCALDCSPTR_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: AliTRDCalDCSPTR.h 18952 2007-06-08 11:36:12Z cblume $ */
7
8 ///////////////////////////////////////////////////////////////////////////////
9 //                                                                           //
10 //  TRD calibration class for TRD PTR configuration parameters               //
11 //                                                                           //
12 ///////////////////////////////////////////////////////////////////////////////
13
14 #include "TNamed.h"
15
16 class TString;
17
18 class AliTRDCalDCSPTR : public TNamed {
19
20  public:
21
22   AliTRDCalDCSPTR();
23   AliTRDCalDCSPTR(const char *name, const char *title);
24   virtual ~AliTRDCalDCSPTR() { };
25
26   void    SetDCSid(Int_t dcsid)              { fDCSID               = dcsid; }  
27   void    SetConfigID(TString id)            { fConfigID            = id;    }
28
29   Int_t   GetDCSid() const                   { return fDCSID;                }
30   TString GetConfigID() const                { return fConfigID;             }
31
32  protected:
33   
34   Int_t   fDCSID;                     //  ID of the DCS-Board
35
36   TString fConfigID;                  //  Configuration ID
37
38   ClassDef(AliTRDCalDCSPTR,1)         //  TRD calibration class for TRD PTR parameters
39
40 };
41 #endif