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