ATLAS Offline Software
AthenaAttributeList.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
8 {}
9 
11 {}
12 
13 AthenaAttributeList::AthenaAttributeList(const coral::AttributeListSpecification& spec) : coral::AttributeList(spec)
14 {}
15 
16 void AthenaAttributeList::print(std::ostream& os) const {
17  os << "{";
18  for (coral::AttributeList::const_iterator itr=this->begin();
19  itr!=this->end();++itr) {
20  if (itr!=this->begin()) os << ",";
21  itr->toOutputStream(os);
22  }
23  os << "}";
24 }
AthenaAttributeList::print
void print(std::ostream &os) const
print to simulate function provided by old POOL AttributeList
Definition: AthenaAttributeList.cxx:16
CaloCondBlobAlgs_fillNoiseFromASCII.spec
spec
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:47
PlotCalibFromCool.begin
begin
Definition: PlotCalibFromCool.py:94
python.PyKernel.AttributeList
AttributeList
Definition: PyKernel.py:36
mergePhysValFiles.end
end
Definition: DataQuality/DataQualityUtils/scripts/mergePhysValFiles.py:93
coral
Definition: ISecondaryEventSelector.h:19
AthenaAttributeList::AthenaAttributeList
AthenaAttributeList()
Construct empty attribute list with empty specification.
Definition: AthenaAttributeList.cxx:7
ReadFromCoolCompare.os
os
Definition: ReadFromCoolCompare.py:231
AthenaAttributeList.h
An AttributeList represents a logical row of attributes in a metadata table. The name and type of eac...