BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
MucGeoCreateAlg.h
Go to the documentation of this file.
1//------------------------------------------------------------------------------|
2// [File ]: MucGeoCreateAlg.h |
3// [Brief ]: Header file of MUC geometry creating algorithem class |
4// [Author]: Xie Yuguang, <ygxie@mail.ihep.ac.cn> |
5// [Date ]: Mar 28, 2006 |
6//------------------------------------------------------------------------------|
7
8#ifndef MUC_GEO_CREATE_ALG_H
9#define MUC_GEO_CREATE_ALG_H
10
11#include <iostream>
12#include <string>
13
14#include "GaudiKernel/Algorithm.h"
15
17
18class MucGeoCreateAlg : public Algorithm {
19public:
20 MucGeoCreateAlg( const std::string& name, ISvcLocator* pSvcLocator );
22
23 StatusCode initialize();
24 StatusCode execute();
25 StatusCode finalize();
26
27private:
28 bool m_bAlignFlag;
29 std::string m_sCreateFlag;
30 std::string m_sAlignFile;
31
32 MucGeoMgr* m_pMucGeoMgr;
33};
34
35#endif
StatusCode initialize()
StatusCode execute()
MucGeoCreateAlg(const std::string &name, ISvcLocator *pSvcLocator)
StatusCode finalize()