CbmRoot
Loading...
Searching...
No Matches
HalCbmHbtEvent.cxx
Go to the documentation of this file.
1/* Copyright (C) 2023-2023 Warsaw University of Technology, Warsaw
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Daniel Wielanek [committer] */
4#include "HalCbmHbtEvent.h"
5
6#include "HalCbmEvent.h"
7#include "HalCbmHbtTrack.h"
8
9HalCbmHbtEvent::HalCbmHbtEvent() : Hal::ExpEvent("HalCbmHbtTrack") {}
10
11Bool_t HalCbmHbtEvent::IsCompatible(const Hal::Event* non_buffered) const
12{
13 if (non_buffered->InheritsFrom("HalCbm::HalCbmEvent")) return kTRUE;
14 return kFALSE;
15}
16
18
19Hal::EventInterface* HalCbmHbtEvent::CreateInterface() const { return nullptr; }
virtual Hal::EventInterface * CreateInterface() const
virtual ~HalCbmHbtEvent()
virtual Bool_t IsCompatible(const Hal::Event *non_buffered) const