BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
NavigationTestAlg.h
Go to the documentation of this file.
1#ifndef NavigationTestAlg_H
2#define NavigationTestAlg_H
3
4#include "GaudiKernel/Algorithm.h"
5
6#include <string>
7#include <vector>
8
9class RecMdcTrack;
10class TH1F;
11class TH2F;
12
13class NavigationTestAlg:public Algorithm {
14public:
15 NavigationTestAlg (const std::string& name, ISvcLocator* pSvcLocator);
16 StatusCode initialize();
17 StatusCode execute();
18 StatusCode finalize();
19
20private:
21 std::string m_fout;
22 std::vector<TH1F*> m_histo;
23 std::vector<TH2F*> m_histo2;
24};
25
26#endif
NavigationTestAlg(const std::string &name, ISvcLocator *pSvcLocator)