]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliCDBEntry.cxx
Using the event range in the selectors mode as well. To be used in CAF reco in order...
[u/mrichter/AliRoot.git] / STEER / AliCDBEntry.cxx
... / ...
CommitLineData
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
16/////////////////////////////////////////////////////////////////////
17// //
18// class AliCDBEntry //
19// container for an object, it identity (AliCDBId) //
20// and its metaData (AliCDBMetaData) //
21// //
22/////////////////////////////////////////////////////////////////////
23
24#include "AliCDBEntry.h"
25#include "AliLog.h"
26
27ClassImp(AliCDBEntry)
28
29//_____________________________________________________________________________
30AliCDBEntry::AliCDBEntry():
31fObject(NULL),
32fId(),
33fMetaData(NULL),
34fIsOwner(kFALSE){
35// default constructor
36
37}
38
39//_____________________________________________________________________________
40AliCDBEntry::AliCDBEntry(TObject* object, const AliCDBId& id,
41 AliCDBMetaData* metaData, Bool_t owner):
42fObject(object),
43fId(id),
44fMetaData(metaData),
45fIsOwner(owner){
46// constructor
47
48}
49
50//_____________________________________________________________________________
51AliCDBEntry::AliCDBEntry(TObject* object, const AliCDBPath& path,
52 const AliCDBRunRange& runRange,
53 AliCDBMetaData* metaData,Bool_t owner):
54fObject(object),
55fId(path, runRange, -1, -1),
56fMetaData(metaData),
57fIsOwner(owner){
58// constructor
59
60}
61
62//_____________________________________________________________________________
63AliCDBEntry::AliCDBEntry(TObject* object, const AliCDBPath& path,
64 const AliCDBRunRange& runRange,
65 Int_t version, AliCDBMetaData* metaData, Bool_t owner):
66fObject(object),
67fId(path, runRange, version, -1),
68fMetaData(metaData),
69fIsOwner(owner){
70// constructor
71
72}
73
74//_____________________________________________________________________________
75AliCDBEntry::AliCDBEntry(TObject* object, const AliCDBPath& path,
76 const AliCDBRunRange& runRange,
77 Int_t version, Int_t subVersion,
78 AliCDBMetaData* metaData, Bool_t owner):
79fObject(object),
80fId(path, runRange, version, subVersion),
81fMetaData(metaData),
82fIsOwner(owner){
83// constructor
84
85}
86
87
88//_____________________________________________________________________________
89AliCDBEntry::AliCDBEntry(TObject* object, const AliCDBPath& path,
90 Int_t firstRun, Int_t lastRun,
91 AliCDBMetaData* metaData, Bool_t owner):
92fObject(object),
93fId(path, firstRun, lastRun, -1, -1),
94fMetaData(metaData),
95fIsOwner(owner){
96// constructor
97
98}
99
100//_____________________________________________________________________________
101AliCDBEntry::AliCDBEntry(TObject* object, const AliCDBPath& path,
102 Int_t firstRun, Int_t lastRun,
103 Int_t version, AliCDBMetaData* metaData,
104 Bool_t owner):
105fObject(object),
106fId(path, firstRun, lastRun, version, -1),
107fMetaData(metaData),
108fIsOwner(owner){
109// constructor
110
111}
112
113//_____________________________________________________________________________
114AliCDBEntry::AliCDBEntry( TObject* object, const AliCDBPath& path,
115 Int_t firstRun, Int_t lastRun,
116 Int_t version, Int_t subVersion,
117 AliCDBMetaData* metaData, Bool_t owner):
118fObject(object),
119fId(path, firstRun, lastRun, version, subVersion),
120fMetaData(metaData), fIsOwner(owner){
121// constructor
122
123}
124
125//_____________________________________________________________________________
126AliCDBEntry::~AliCDBEntry() {
127// destructor
128
129 if (fIsOwner) {
130 if (fObject) {
131 delete fObject;
132 }
133
134 if (fMetaData) {
135 delete fMetaData;
136 }
137 }
138}
139
140//_____________________________________________________________________________
141void AliCDBEntry::PrintId() const {
142
143 AliInfo(Form("%s",fId.ToString().Data()));
144
145}