Implementation of the AIDA IAnnotation interface class.
More...
#include <Annotation.h>
|
| | Annotation () |
| | Constructor.
|
| |
| virtual | ~Annotation () |
| | Destructor.
|
| |
| bool | addItem (const std::string &key, const std::string &value, bool sticky=false) |
| | Add a key/value pair with a given sticky.
|
| |
| bool | removeItem (const std::string &key) |
| | Remove the item indicated by a given key.
|
| |
| std::string | value (const std::string &key) const |
| | Retrieve the value for a given key.
|
| |
| void | setValue (const std::string &key, const std::string &value) |
| | Set value for a given key.
|
| |
| void | setSticky (const std::string &key, bool sticky) |
| | Set sticky for a given key.
|
| |
| int | size () const |
| | Get the number of items in the Annotation.
|
| |
| std::string | key (int index) const |
| | Individual access to the Annotation-items.
|
| |
| std::string | value (int index) const |
| |
| void | reset () |
| | Remove all the non-sticky items.
|
| |
Implementation of the AIDA IAnnotation interface class.
Definition at line 18 of file Annotation.h.
| AIDA::Annotation::Annotation |
( |
| ) |
|
|
inline |
| virtual AIDA::Annotation::~Annotation |
( |
| ) |
|
|
inlinevirtual |
| bool AIDA::Annotation::addItem |
( |
const std::string & |
key, |
|
|
const std::string & |
value, |
|
|
bool |
sticky = false |
|
) |
| |
|
inline |
Add a key/value pair with a given sticky.
Definition at line 83 of file Annotation.h.
| std::string AIDA::Annotation::key |
( |
int |
index | ) |
const |
|
inline |
Individual access to the Annotation-items.
Definition at line 145 of file Annotation.h.
| bool AIDA::Annotation::removeItem |
( |
const std::string & |
key | ) |
|
|
inline |
Remove the item indicated by a given key.
Definition at line 93 of file Annotation.h.
{
std::map< std::string, unsigned int >::const_iterator iKey =
m_identifiers.find(
key );
unsigned int indexToBeRemoved = iKey->second;
std::vector< AnnotationItem > m_annotationItemsNew;
if ( iItem == indexToBeRemoved ) continue;
m_annotationItemsNew.push_back( AnnotationItem( item.m_key, item.m_value, item.m_sticky ) );
m_identifiers.insert( std::make_pair( item.m_key, m_annotationItemsNew.size() - 1 ) );
}
return true;
}
| void AIDA::Annotation::reset |
( |
| ) |
|
|
inline |
Remove all the non-sticky items.
Definition at line 157 of file Annotation.h.
{
std::vector< std::string > itemsToRemove;
itemsToRemove.reserve(
size() );
}
}
for (
unsigned int i = 0;
i < itemsToRemove.size(); ++
i )
removeItem( itemsToRemove[
i] );
}
| void AIDA::Annotation::setSticky |
( |
const std::string & |
key, |
|
|
bool |
sticky |
|
) |
| |
|
inline |
Set sticky for a given key.
Definition at line 134 of file Annotation.h.
{
std::map< std::string, unsigned int >::const_iterator iKey =
m_identifiers.find(
key );
}
| void AIDA::Annotation::setValue |
( |
const std::string & |
key, |
|
|
const std::string & |
value |
|
) |
| |
|
inline |
Set value for a given key.
Definition at line 124 of file Annotation.h.
{
std::map< std::string, unsigned int >::const_iterator iKey =
m_identifiers.find(
key );
else
}
| int AIDA::Annotation::size |
( |
| ) |
const |
|
inline |
| std::string AIDA::Annotation::value |
( |
const std::string & |
key | ) |
const |
|
inline |
Retrieve the value for a given key.
Definition at line 117 of file Annotation.h.
{
std::map< std::string, unsigned int >::const_iterator iKey =
m_identifiers.find(
key );
}
| std::string AIDA::Annotation::value |
( |
int |
index | ) |
const |
|
inline |
| std::string AIDA::Annotation::emptyString |
|
private |
The vector of the annotation items.
Definition at line 74 of file Annotation.h.
| std::map< std::string, unsigned int > AIDA::Annotation::m_identifiers |
|
private |
The map of strings to identifiers.
Definition at line 77 of file Annotation.h.
The documentation for this class was generated from the following file:
- /afs/.cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v25r2/GaudiCommonSvc/src/HistogramSvc/Annotation.h