EventCounter.h
Go to the documentation of this file.
1 #include "GaudiKernel/Algorithm.h"
2 #include "GaudiKernel/Property.h"
3 
4 class GAUDI_API EventCounter: public Algorithm {
5 public:
6 
10  EventCounter( const std::string& name, ISvcLocator* pSvcLocator );
11 
15  virtual ~EventCounter( );
16 
17  /*****************************
18  ** Public Function Members **
19  *****************************/
20 
24 
25 private:
26 
27  /**************************
28  ** Private Data Members **
29  **************************/
30 
36  IntegerProperty m_frequency;
37 
42  int m_skip;
43 
47  int m_total;
48 };
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:26
#define GAUDI_API
Definition: Kernel.h:108
virtual StatusCode execute()=0
The action to be performed by the algorithm on an event.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:30
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:61
virtual StatusCode initialize()
the default (empty) implementation of IStateful::initialize() method
Definition: Algorithm.h:157
virtual StatusCode finalize()
the default (empty) implementation of IStateful::finalize() method
Definition: Algorithm.h:163