#include <MucGeoCreateAlg.h>
Definition at line 18 of file MucGeoCreateAlg.h.
◆ MucGeoCreateAlg()
MucGeoCreateAlg::MucGeoCreateAlg |
( |
const std::string & |
name, |
|
|
ISvcLocator * |
pSvcLocator |
|
) |
| |
Definition at line 20 of file MucGeoCreateAlg.cxx.
20 :
21 Algorithm(name, pSvcLocator), m_bAlignFlag(true)
22{
23
24 declareProperty("CreateFlag", m_sCreateFlag);
25 declareProperty("AlignFlag", m_bAlignFlag);
26 declareProperty("AlignFile", m_sAlignFile = "MucGeoAlignConst.root");
27}
◆ ~MucGeoCreateAlg()
MucGeoCreateAlg::~MucGeoCreateAlg |
( |
| ) |
|
|
inline |
◆ execute()
StatusCode MucGeoCreateAlg::execute |
( |
| ) |
|
Definition at line 46 of file MucGeoCreateAlg.cxx.
47{
48 MsgStream log(
msgSvc(), name());
49 log << MSG::INFO << endreq << "In execute()" << endreq;
50
51 return StatusCode::SUCCESS;
52}
◆ finalize()
StatusCode MucGeoCreateAlg::finalize |
( |
| ) |
|
Definition at line 54 of file MucGeoCreateAlg.cxx.
55{
56 MsgStream log(
msgSvc(), name());
57 log << MSG::INFO << endreq << "In finalize()" << endreq << endreq;
58
62
63 return StatusCode::SUCCESS;
64}
StatusCode CreateOnlineStripGeo()
StatusCode CreateEntities()
StatusCode CreateRootGeo()
◆ initialize()
StatusCode MucGeoCreateAlg::initialize |
( |
| ) |
|
Definition at line 30 of file MucGeoCreateAlg.cxx.
31{
32 MsgStream log(
msgSvc(), name());
33
34 log << MSG::INFO << endreq << "In initialize() " << endreq;
35 log << MSG::INFO << "Add alignment:\t" << ((m_bAlignFlag)?"YES":"NO") << endreq << endreq;
36
37 if( m_bAlignFlag )
38 log << MSG::INFO << "Alignment file:\t" << m_sAlignFile << endreq;
39
40 m_pMucGeoMgr =
new MucGeoMgr( m_sCreateFlag, m_bAlignFlag, m_sAlignFile );
41
42 return StatusCode::SUCCESS;
43}
The documentation for this class was generated from the following files: