BOSS 8.0.0
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 DummyLoadOldROOTAlg( const std::string& name, ISvcLocator* pSvcLocator );
10
11 StatusCode initialize();
12 StatusCode execute();
13 StatusCode finalize();
14
15private:
16 std::vector<std::string> m_string_vec;
17};
18
19#endif
DummyLoadOldROOTAlg(const std::string &name, ISvcLocator *pSvcLocator)