All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
WriteAlg.h
Go to the documentation of this file.
1 //$Header: /tmp/svngaudi/tmp.jEpFh25751/Gaudi/GaudiPython/src/Test/WriteAlg.h,v 1.1 2001/10/15 13:11:26 mato Exp $ //
2 #ifndef GAUDIEXAMPLE_WRITEALG_H
3 #define GAUDIEXAMPLE_WRITEALG_H
4 
5 // Framework include files
6 #include "GaudiKernel/Algorithm.h"
7 
15 class WriteAlg : public Algorithm {
16 public:
18  WriteAlg(const std::string& name, ISvcLocator* pSvcLocator)
19  : Algorithm(name, pSvcLocator) { }
21  virtual ~WriteAlg() { }
23  virtual StatusCode initialize();
25  virtual StatusCode finalize();
27  virtual StatusCode execute();
28 };
29 
30 #endif // GAUDIEXAMPLE_WRITEALG_H