Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
OTFMcEventInterface.h
1/*
2 * OTFMcEventInterface.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_OTFMCEVENTINTERFACE_H_
10#define HAL_EXAMPLES_ONTHEFLY_OTFMCEVENTINTERFACE_H_
11
12#include "EventInterface.h"
13#include "OTFData.h"
14namespace HalOTF {
16 OTF::McEvent* fEvent;
17 Bool_t fCanDelete;
18
19 protected:
20 virtual void ConnectToTreeInternal(Hal::EventInterface::eMode mode);
21
22 public:
24 OTF::McEvent* GetMcEvent() const { return fEvent; }
25 virtual ~McEventInterface();
26 ClassDef(McEventInterface, 1)
27 };
28} // namespace HalOTF
29
30#endif /* HAL_EXAMPLES_ONTHEFLY_OTFMCEVENTINTERFACE_H_ */