Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
DbgMcEventInterface.h
1/*
2 * DbgMcEventInterface.h
3 *
4 * Created on: 28 maj 2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#ifndef HAL_EXAMPLES_ONTHEFLY_DBGMCEVENTINTERFACE_H_
10#define HAL_EXAMPLES_ONTHEFLY_DBGMCEVENTINTERFACE_H_
11
12#include "EventInterface.h"
13#include "DbgData.h"
14namespace HalDbg {
16 Dbg::McEvent* fEvent;
17 Bool_t fCanDelete;
18
19 protected:
20 virtual void ConnectToTreeInternal(Hal::EventInterface::eMode mode);
21
22 public:
24 Dbg::McEvent* GetMcEvent() const { return fEvent; }
25 virtual ~McEventInterface();
26 ClassDef(McEventInterface, 1)
27 };
28} // namespace HalDbg
29
30#endif /* HAL_EXAMPLES_ONTHEFLY_DBGMCEVENTINTERFACE_H_ */