]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliGRPDCS.h
Comments for Doxygen (mostly added comments for inline functions)
[u/mrichter/AliRoot.git] / STEER / AliGRPDCS.h
CommitLineData
3dedb44a 1#ifndef ALI_GRP_DCS_H
2#define ALI_GRP_DCS_H
3
4//-------------------------------------------------------------------------
5// Class AliGRPDCS
6// This class deals with the DCS related info of the GRP
7//
8// Origin: Panos Christakoglou, UOA-CERN, Panos.Christakoglou@cern.ch
9//-------------------------------------------------------------------------
10
11
12
13//////////////////////////////////////////////////////////////////////////
14// //
15// AliGRPDCS //
16// //
17// Implementation of the class that processes //
18// the DCS related fields of the GRP. //
19// //
20//////////////////////////////////////////////////////////////////////////
21
22#include "TObject.h"
23
3dedb44a 24class AliGRPDCS: public TObject {
25 public:
26 AliGRPDCS();
27 AliGRPDCS(TObjArray *dcsArray);
28 AliGRPDCS(const AliGRPDCS& grpDcs);
29
30 void SetObjArray(TObjArray *dcsSArray) {fDCSArray = dcsSArray;}
e97cc90e 31 const char *ProcessDCS(Int_t iType);
3dedb44a 32
33 private:
34
35 TObjArray *fDCSArray; //TObjArray for a dcs data point
36
e97cc90e 37 const char *ProcessInt();
38 const char *ProcessUInt();
39 const char *ProcessFloat();
40 const char *ProcessString();
41 const char *ProcessBoolean();
3dedb44a 42 AliGRPDCS & operator=(const AliGRPDCS & ) {return *this;}
43
44 ClassDef(AliGRPDCS, 0);
45};
46
47#endif