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