The Gaudi Framework  v30r2 (9eca68f7)
HistogramAgent.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_HISTOGRAMAGENT_H
2 #define GAUDIKERNEL_HISTOGRAMAGENT_H
3 
4 #include "GaudiKernel/ClassID.h"
8 
17 class HistogramAgent final : virtual public IDataStoreAgent
18 {
20 
21 public:
23  const IDataSelector& selectedObjects() const { return m_objects; }
25  bool analyse( IRegistry* pRegistry, int ) override
26  {
27  DataObject* obj = pRegistry->object();
28  if ( obj && obj->clID() != CLID_StatisticsFile ) {
29  m_objects.push_back( obj );
30  return true;
31  }
32  return false;
33  }
34 };
35 #endif // GAUDIKERNEL_HISTOGRAMAGENT_H
HistogramAgent base in charge of collecting all the refereces to DataObjects in a transient store tha...
bool analyse(IRegistry *pRegistry, int) override
Analyses a given directory entry.
virtual const CLID & clID() const
Retrieve reference to class definition structure.
Definition: DataObject.cpp:62
The IRegistry represents the entry door to the environment any data object residing in a transient da...
Definition: IRegistry.h:22
const IDataSelector & selectedObjects() const
Return the set of selected DataObjects.
virtual DataObject * object() const =0
Retrieve object behind the link.
IDataSelector m_objects
Generic data agent interface.
A DataObject is the base class of any identifiable object on any data store.
Definition: DataObject.h:30