Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
DbgRecoEventInterface.h
1/*
2 * DbgRecoEventInterface.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_DBGRECOEVENTINTERFACE_H_
10#define HAL_EXAMPLES_ONTHEFLY_DBGRECOEVENTINTERFACE_H_
11
12#include "DbgData.h"
13#include "EventInterface.h"
14
15namespace HalDbg {
16
18 Dbg::RecoEvent* fEvent;
19 Bool_t fCanDelete;
20
21 protected:
22 void ConnectToTreeInternal(eMode mode);
23
24 public:
26 Dbg::RecoEvent* GetEvent() const { return fEvent; }
27 virtual ~RecoEventInterface();
28 ClassDef(RecoEventInterface, 1)
29 };
30} // namespace HalDbg
31
32#endif /* HAL_EXAMPLES_ONTHEFLY_DBGRECOEVENTINTERFACE_H_ */