Heavy ion Analysis Libriares
Loading...
Searching...
No Matches
EventInterface.cxx
1/*
2 * EventInterface.cxx
3 *
4 * Created on: 4 maj 2022
5 * Author: Daniel Wielanek
6 * E-mail: daniel.wielanek@gmail.com
7 * Warsaw University of Technology, Faculty of Physics
8 */
9#include "EventInterface.h"
10
11#include <iostream>
12namespace Hal {
13 EventInterface::EventInterface() : fConnected(kFALSE) {}
14
15 void EventInterface::ConnectToTree(eMode mode) {
16 if (fConnected) return;
17 ConnectToTreeInternal(mode);
18 }
19
20 EventInterface::~EventInterface() {}
21
22} // namespace Hal