![]() |
|
|
Generated: 8 Jan 2009 |
#include <GaudiKernel/HistogramAgent.h>


The default behaviour is to collect all entries.
Definition at line 18 of file HistogramAgent.h.
Public Member Functions | |
| HistogramAgent () | |
| Default creator. | |
| virtual | ~HistogramAgent () |
| Destructor. | |
| IDataSelector * | selectedObjects () |
| Return the set of selected DataObjects. | |
| virtual bool | analyse (IRegistry *pRegistry, int) |
| Analyses a given directory entry. | |
Protected Attributes | |
| IDataSelector | m_objects |
| HistogramAgent::HistogramAgent | ( | ) | [inline] |
| virtual HistogramAgent::~HistogramAgent | ( | ) | [inline, virtual] |
| IDataSelector* HistogramAgent::selectedObjects | ( | ) | [inline] |
Return the set of selected DataObjects.
Definition at line 29 of file HistogramAgent.h.
00029 { 00030 return &m_objects; 00031 }
| virtual bool HistogramAgent::analyse | ( | IRegistry * | pRegistry, | |
| int | ||||
| ) | [inline, virtual] |
Analyses a given directory entry.
Implements IDataStoreAgent.
Definition at line 33 of file HistogramAgent.h.
00033 { 00034 DataObject* obj = pRegistry->object(); 00035 if ( 0 != obj ) { 00036 if ( obj->clID() != CLID_StatisticsFile ) { 00037 m_objects.push_back(obj); 00038 return true; 00039 } 00040 } 00041 return false; 00042 }
IDataSelector HistogramAgent::m_objects [protected] |
Definition at line 20 of file HistogramAgent.h.