The Gaudi Framework  v28r3 (cc1cf868)
GslErrorCount.h
Go to the documentation of this file.
1 #ifndef GAUDIGSL_GSLERRORCOUNT_H
2 #define GAUDIGSL_GSLERRORCOUNT_H 1
3 // Include files
4 // from STL
5 #include <string>
6 #include <map>
7 // from GaudiKernel
8 #include "GaudiKernel/AlgTool.h"
9 // from GaudiGSL
11 #include "GaudiGSL/GslError.h"
12 // forward declaration
13 
23 class GslErrorCount: public extends<AlgTool,
24  IGslErrorHandler> {
25 public:
26 
33  StatusCode handle( const GslError& error ) const override ;
34 
40  StatusCode finalize () override ;
41 
45 
46 private:
47 
50  mutable Counters m_counters ;
51 
52 };
53 
54 // ============================================================================
55 // The END
56 // ============================================================================
57 #endif // GAUDIGSL_GSLERRORCOUNT_H
58 // ============================================================================
StatusCode handle(const GslError &error) const override
handle the GSL error
Helper class to represent GSL errors.
Definition: GslError.h:16
MsgStream & error() const
shortcut for the method msgStream(MSG::ERROR)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
std::map< GslError, unsigned int > Counters
container of error counters
Definition: GslErrorCount.h:49
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
Concrete GSL error handler It is just counts number of GSL errors.
Definition: GslErrorCount.h:23
Counters m_counters
Definition: GslErrorCount.h:50
StatusCode finalize() override
standard finalization of Tool
CommonMessaging base_class