Gaudi Framework, version v24r2

Home   Generated: Wed Dec 4 2013
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
HistogramAgent.h
Go to the documentation of this file.
1 // $Id: HistogramAgent.h,v 1.3 2003/04/15 07:51:15 mato Exp $
2 #ifndef GAUDIKERNEL_HISTOGRAMAGENT_H
3 #define GAUDIKERNEL_HISTOGRAMAGENT_H
4 
5 #include "GaudiKernel/ClassID.h"
9 
18 class HistogramAgent : virtual public IDataStoreAgent {
19 protected:
21 public:
24  }
26  virtual ~HistogramAgent() {
27  }
30  return &m_objects;
31  }
33  virtual bool analyse(IRegistry* pRegistry, int ) {
34  DataObject* obj = pRegistry->object();
35  if ( 0 != obj ) {
36  if ( obj->clID() != CLID_StatisticsFile ) {
37  m_objects.push_back(obj);
38  return true;
39  }
40  }
41  return false;
42  }
43 };
44 #endif // GAUDIKERNEL_HISTOGRAMAGENT_H

Generated at Wed Dec 4 2013 14:33:08 for Gaudi Framework, version v24r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004