Forked from
cepc / CEPCSW
1610 commits behind the upstream repository.
-
lintao@ihep.ac.cn authoredb8471cd0
HelloAlg.cpp 428 B
#include "HelloAlg.h"
DECLARE_COMPONENT(HelloAlg)
HelloAlg::HelloAlg(const std::string& name, ISvcLocator* pSvcLocator)
: Algorithm(name, pSvcLocator) {
}
StatusCode
HelloAlg::initialize() {
StatusCode sc;
info() << "MyInt: " << m_int.value() << endmsg;
return sc;
}
StatusCode
HelloAlg::execute() {
StatusCode sc;
return sc;
}
StatusCode
HelloAlg::finalize() {
StatusCode sc;
return sc;
}