]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliCDBMetaData.cxx
Regenerated with modifying geometry (adding mother volumes)
[u/mrichter/AliRoot.git] / STEER / 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>
2c8628dd 28
fe913d8f 29ClassImp(AliCDBMetaData)
2c8628dd 30
2c8628dd 31//_____________________________________________________________________________
9e1ceb13 32AliCDBMetaData::AliCDBMetaData() {
2c8628dd 33// default constructor
2c8628dd 34
9e1ceb13 35 fProperties.SetOwner(1);
2c8628dd 36}
37
2c8628dd 38//_____________________________________________________________________________
9e1ceb13 39AliCDBMetaData::~AliCDBMetaData() {
40// destructor
2c8628dd 41
2c8628dd 42}
43
2c8628dd 44//_____________________________________________________________________________
9e1ceb13 45void AliCDBMetaData::SetProperty(const char* property, TObject* object) {
46// add something to the list of properties
f05209ee 47
9e1ceb13 48 fProperties.Add(new TObjString(property), object);
f05209ee 49}
50
51//_____________________________________________________________________________
9e1ceb13 52TObject* AliCDBMetaData::GetProperty(const char* property) const {
53// get a property specified by its name (property)
f05209ee 54
9e1ceb13 55 return fProperties.GetValue(property);
2c8628dd 56}
57
58//_____________________________________________________________________________
9e1ceb13 59Bool_t AliCDBMetaData::RemoveProperty(const char* property) {
60// removes a property
61
62 TObjString objStrProperty(property);
63 TObjString* aKey = (TObjString*) fProperties.Remove(&objStrProperty);
64
65 if (aKey) {
66 delete aKey;
67 return kTRUE;
68 } else {
69 return kFALSE;
70 }
2c8628dd 71}
72
2c8628dd 73//_____________________________________________________________________________
9e1ceb13 74void AliCDBMetaData::PrintMetaData() {
75// print the object's metaData
76
77 AliInfo("**** Object's MetaData set ****");
78 AliInfo(Form(" Object's class name: %s", fObjectClassName.Data()));
79 AliInfo(Form(" Responsible: %s", fResponsible.Data()));
80 AliInfo(Form(" Beam period: %d", fBeamPeriod));
81 AliInfo(Form(" AliRoot version: %s", fAliRootVersion.Data()));
82 AliInfo(Form(" Comment: %s", fComment.Data()));
83 AliInfo(" Properties key names:");
84
85 TIter iter(fProperties.GetTable());
86 TPair* aPair;
87 while ((aPair = (TPair*) iter.Next())) {
88 AliInfo(Form(" %s",((TObjString* )aPair->Key())->String().Data()));
89 }
90
2c8628dd 91}