BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
DumpDecayTreeAlg.h
Go to the documentation of this file.
1#include "GaudiKernel/Algorithm.h"
2#include <map>
3#include <string>
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
14private:
15 std::map<int, std::string> m_map;
16
17 int m_eventCounter;
18 int m_freq;
19
20 bool m_BesEvtGenOnly;
21 bool m_PrintParticles;
22
23 bool m_FindRunEvent;
24 int m_FindRun;
25 int m_FindEvent;
26};
StatusCode initialize()
DumpDecayTreeAlg(const std::string &name, ISvcLocator *pSvcLocator)