ATLAS Offline Software
Loading...
Searching...
No Matches
IOVMetaDataContainer.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
7
12
13bool
15{
16 return m_payload->merge(payload);
17}
18
19void IOVMetaDataContainer::dump(std::ostringstream& stream) const
20{
21 stream << "IOVMetaDataContainer ::" << std::endl;
22 stream << "Payload size : " << m_payload->size() << std::endl;
23 stream << "IOVs and attribute lists : " << std::endl;
24
25 for(CondAttrListCollection* attListCol : *m_payload ) {
26 attListCol->dump(stream);
27 }
28}
This class is a container for conditions data.
This class is a container for the payload of conditions data.
This class is a collection of AttributeLists where each one is associated with a channel number.
bool merge(CondAttrListCollection *payload)
Add in new payload.
IOVPayloadContainer * m_payload
void dump(std::ostringstream &stream) const
Dump the content.