]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/STEER/AliDCSArray.h
CTP raw data simulation changed to Run2 payload.
[u/mrichter/AliRoot.git] / STEER / STEER / AliDCSArray.h
1 #ifndef ALI_DCS_ARRAY_H
2 #define ALI_DCS_ARRAY_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 ////////////////////////////////////////////////////////////////////////////////
10 //                                                                            //
11 // This class represents the value(s) of a the LHC DPs at a given timestamp   //
12 //                                                                            //
13 ////////////////////////////////////////////////////////////////////////////////
14
15 #include <TObject.h>
16 #include <TObjArray.h>
17 //#include <TTimeStamp.h>
18 class TObjString;
19
20 class AliDCSArray : public TObject {
21  public:
22         enum Type {
23                 kInvalid = 0,
24                 kBool = 1,
25                 kChar = 2,
26                 kInt = 3,
27                 kUInt = 4,
28                 kFloat = 5,
29                 kString = 6,
30                 kDouble = 7
31         };
32         
33         AliDCSArray();
34         
35         virtual ~AliDCSArray();
36         
37         AliDCSArray(Int_t nentries, Bool_t* value, Double_t timeStamp);
38         AliDCSArray(Int_t nentries, Char_t* value, Double_t timeStamp);
39         AliDCSArray(Int_t nentries, Int_t* value, Double_t timeStamp);
40         AliDCSArray(Int_t nentries, UInt_t* value, Double_t timeStamp);
41         AliDCSArray(Int_t nentries, Float_t* value, Double_t timeStamp);
42         AliDCSArray(Int_t nentries, Double_t* value, Double_t timeStamp);
43         AliDCSArray(Int_t nentries, TObjArray* value, Double_t timeStamp);
44         
45         Int_t GetNEntries() const { return fnentries;}
46         Bool_t* GetBool() const { return fBool; }
47         Char_t* GetChar() const { return fChar; }
48         Int_t* GetInt() const { return fInt; }
49         UInt_t* GetUInt() const { return fUInt; }
50         Float_t* GetFloat() const { return fFloat; }
51         Double_t* GetDouble() const { return fDouble; }
52         TObjArray* GetStringArray() const { return fStringArray; }
53
54         Bool_t GetBool(Int_t index) const { return fBool[index]; }
55         Char_t GetChar(Int_t index) const { return fChar[index]; }
56         Int_t GetInt(Int_t index) const { return fInt[index]; }
57         UInt_t GetUInt(Int_t index) const { return fUInt[index]; }
58         Float_t GetFloat(Int_t index) const { return fFloat[index]; }
59         Double_t GetDouble(Int_t index) const { return fDouble[index]; }
60         TObjString* GetStringArray(Int_t index) const { return (TObjString*)fStringArray->At(index); }
61         
62         Type GetType() const { return fType; }
63         
64         Double_t GetTimeStamp() const { return fTimeStamp; }
65         void SetTimeStamp(Double_t timeStamp) { fTimeStamp = timeStamp; }
66         
67  protected:
68         
69         void Init();
70         
71         Type fType;                // type of the value stored
72         
73         Int_t fnentries;           // n. of entries at the same timestamp
74         Bool_t* fBool;             //[fnentries] bool value
75         Char_t* fChar;             //[fnentries] char value
76         Int_t* fInt;               //[fnentries] int value
77         UInt_t* fUInt;             //[fnentries] uint value
78         Float_t* fFloat;           //[fnentries] float value
79         //      TString* fString;   //[fnentries] string value
80         TObjArray* fStringArray;    //TObjArray to store TObjStrinf for string value
81         
82         Double_t fTimeStamp;    // timestamp of this value
83
84         Double_t* fDouble;         //[fnentries] double value
85
86  private:
87         AliDCSArray(const AliDCSArray& c);
88         AliDCSArray& operator=(const AliDCSArray& c);
89         
90         ClassDef(AliDCSArray, 2);
91 };
92
93 #endif