]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/CDB/AliCDBMetaData.cxx
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / STEER / CDB / AliCDBMetaData.cxx
CommitLineData
2c8628dd 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
9e1ceb13 16/////////////////////////////////////////////////////////////////////
17// //
18// class AliCDBMetaData //
19// Set of data describing the object //
20// but not used to identify the object //
21// //
22/////////////////////////////////////////////////////////////////////
2c8628dd 23
fe913d8f 24#include "AliCDBMetaData.h"
f05209ee 25#include "AliLog.h"
2c8628dd 26
9e1ceb13 27#include <TObjString.h>
5b039c66 28#include <TTimeStamp.h>
2c8628dd 29
fe913d8f 30ClassImp(AliCDBMetaData)
2c8628dd 31
2c8628dd 32//_____________________________________________________________________________
17c7b9cd 33AliCDBMetaData::AliCDBMetaData() :
5078a13f 34 TObject(),
35 fObjectClassName(""),
36 fResponsible(""),
37 fBeamPeriod(0),
38 fAliRootVersion(""),
39 fComment(""),
40 fProperties()
17c7b9cd 41{
5078a13f 42 // default constructor
2c8628dd 43
5078a13f 44 fProperties.SetOwner(1);
2c8628dd 45}
46
c3a7b59a 47//_____________________________________________________________________________
48AliCDBMetaData::AliCDBMetaData(const char *responsible, UInt_t beamPeriod,
5078a13f 49 const char* alirootVersion, const char* comment) :
50 TObject(),
51 fObjectClassName(""),
52 fResponsible(responsible),
53 fBeamPeriod(beamPeriod),
54 fAliRootVersion(alirootVersion),
55 fComment(comment),
56 fProperties()
c3a7b59a 57{
5078a13f 58 // constructor
c3a7b59a 59
5078a13f 60 fProperties.SetOwner(1);
c3a7b59a 61}
62
2c8628dd 63//_____________________________________________________________________________
9e1ceb13 64AliCDBMetaData::~AliCDBMetaData() {
5078a13f 65 // destructor
2c8628dd 66
2c8628dd 67}
68
2c8628dd 69//_____________________________________________________________________________
9e1ceb13 70void AliCDBMetaData::SetProperty(const char* property, TObject* object) {
5078a13f 71 // add something to the list of properties
f05209ee 72
5078a13f 73 fProperties.Add(new TObjString(property), object);
f05209ee 74}
75
76//_____________________________________________________________________________
9e1ceb13 77TObject* AliCDBMetaData::GetProperty(const char* property) const {
5078a13f 78 // get a property specified by its name (property)
f05209ee 79
5078a13f 80 return fProperties.GetValue(property);
2c8628dd 81}
82
83//_____________________________________________________________________________
9e1ceb13 84Bool_t AliCDBMetaData::RemoveProperty(const char* property) {
5078a13f 85 // removes a property
9e1ceb13 86
5078a13f 87 TObjString objStrProperty(property);
88 TObjString* aKey = (TObjString*) fProperties.Remove(&objStrProperty);
9e1ceb13 89
5078a13f 90 if (aKey) {
91 delete aKey;
92 return kTRUE;
93 } else {
94 return kFALSE;
95 }
2c8628dd 96}
97
5b039c66 98//_____________________________________________________________________________
99void AliCDBMetaData::AddDateToComment() {
5078a13f 100 // add the date to the comment.
101 // This method is supposed to be useful if called at the time when the object
102 // is created, so that later it can more easily be tracked, in particular
103 // when the date of the file can be lost or when one is interested in the
104 // date of creation, irrespective of a later copy of it
105
106 TTimeStamp ts(time(0));
107 TString comment(GetComment());
108 comment += Form("\tDate of production: %s\n", ts.AsString());
109 comment.Remove(comment.Last('+'));
110 SetComment(comment);
5b039c66 111
112}
113
2c8628dd 114//_____________________________________________________________________________
9e1ceb13 115void AliCDBMetaData::PrintMetaData() {
5078a13f 116 // print the object's metaData
117
118 TString message;
119 if(fObjectClassName != "")
120 message += TString::Format("\tObject's class name: %s\n", fObjectClassName.Data());
121 if(fResponsible != "")
122 message += TString::Format("\tResponsible: %s\n", fResponsible.Data());
123 if(fBeamPeriod != 0)
124 message += TString::Format("\tBeam period: %d\n", fBeamPeriod);
125 if(fAliRootVersion != "")
126 message += TString::Format("\tAliRoot version: %s\n", fAliRootVersion.Data());
127 if(fComment != "")
128 message += TString::Format("\tComment: %s\n", fComment.Data());
129 if(fProperties.GetEntries() > 0){
130 message += "\tProperties key names:";
131
132 TIter iter(fProperties.GetTable());
133 TPair* aPair;
134 while ((aPair = (TPair*) iter.Next())) {
135 message += TString::Format("\t\t%s\n", ((TObjString* ) aPair->Key())->String().Data());
136 }
137 }
138 message += '\n';
139 Printf("**** Object's MetaData parameters **** \n%s", message.Data());
2c8628dd 140}