]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliCDBMetaData.h
Updated PaintContour() method
[u/mrichter/AliRoot.git] / STEER / AliCDBMetaData.h
1 #ifndef ALI_META_DATA_H
2 #define ALI_META_DATA_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /////////////////////////////////////////////////////////////////////
8 //                                                                 //
9 //  class AliCDBMetaData                                           //
10 //  Set of data describing the object                              //
11 //  but not used to identify the object                            //
12 //                                                                 //
13 /////////////////////////////////////////////////////////////////////
14
15 #include <TObject.h>
16 #include <TMap.h>
17
18 class AliCDBMetaData: public TObject {
19         
20 public:
21         AliCDBMetaData();
22         AliCDBMetaData(const char *responsible, UInt_t beamPeriod=0, const char* alirootVersion="", const char* comment="");
23         virtual ~AliCDBMetaData();
24
25         void            SetObjectClassName(const char* name) 
26                                 {fObjectClassName = name;};
27         const char*     GetObjectClassName() const 
28                                 {return fObjectClassName.Data();};
29         
30         void            SetResponsible(const char* yourName) 
31                                 {fResponsible = yourName;};
32         const char*     GetResponsible() const 
33                                 {return fResponsible.Data();};
34
35         void            SetBeamPeriod(UInt_t period) 
36                                 {fBeamPeriod = period;};
37         UInt_t          GetBeamPeriod() const 
38                                 {return fBeamPeriod;};
39
40         void            SetAliRootVersion(const char* version)
41                                 {fAliRootVersion = version;};
42         const char*     GetAliRootVersion() const 
43                                 {return fAliRootVersion.Data();};
44
45         void            SetComment(const char* comment) 
46                                 {fComment = comment;};
47         const char*     GetComment() const 
48                                 {return fComment.Data();};
49
50         void            SetProperty(const char* property, TObject* object);
51         TObject*        GetProperty(const char* property) const;
52         Bool_t          RemoveProperty(const char* property);
53         
54         void PrintMetaData();
55         
56 private:
57
58         TString fObjectClassName;       // object's class name
59         TString fResponsible;           // object's responsible person
60         UInt_t  fBeamPeriod;            // beam period
61         TString fAliRootVersion;        // AliRoot version
62         TString fComment;               // extra comments
63         //TList fCalibRuns;             
64         
65         TMap fProperties;               // list of object specific properties
66
67         ClassDef(AliCDBMetaData, 1);
68 };
69
70 #endif