BOSS 7.0.7
BESIII Offline Software System
Loading...
Searching...
No Matches
DumpDecayTreeAlg.h
Go to the documentation of this file.
1#include <string>
2#include <map>
3#include "GaudiKernel/Algorithm.h"
4
5class DumpDecayTreeAlg : public Algorithm {
6
7public:
8 DumpDecayTreeAlg(const std::string& name, ISvcLocator* pSvcLocator);
9
10 StatusCode initialize();
11 StatusCode execute();
12 StatusCode finalize();
13
14
15private:
16
17 std::map<int,std::string> m_map;
18
19 int m_eventCounter;
20 int m_freq;
21
22 bool m_BesEvtGenOnly;
23 bool m_PrintParticles;
24
25 bool m_FindRunEvent;
26 int m_FindRun;
27 int m_FindEvent;
28};
StatusCode initialize()