CGEM BOSS 6.6.5.i
BESIII Offline Software System
Loading...
Searching...
No Matches
HelloWorld.h
Go to the documentation of this file.
1#include "GaudiKernel/Algorithm.h"
2
3
4/////////////////////////////////////////////////////////////////////////////
5
6class HelloWorld:public Algorithm {
7public:
8 HelloWorld (const std::string& name, ISvcLocator* pSvcLocator);
9 StatusCode initialize();
10 StatusCode execute();
11 StatusCode finalize();
12
13private:
14
15 int m_myInt;
16 bool m_myBool;
17 double m_myDouble;
18 std::vector<std::string> m_myStringVec;
19
20};
21
StatusCode execute()
HelloWorld(const std::string &name, ISvcLocator *pSvcLocator)
Definition HelloWorld.cxx:6
StatusCode initialize()
StatusCode finalize()