FairShip
Loading...
Searching...
No Matches
vetoHitOnTrack.cxx
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2// SPDX-FileCopyrightText: Copyright CERN for the benefit of the SHiP
3// Collaboration
4
5#include "vetoHitOnTrack.h"
6
7// ----- Default constructor -------------------------------------------
8vetoHitOnTrack::vetoHitOnTrack() : TObject(), fDist(-1), fHitID(-1) {}
9// -------------------------------------------------------------------------
10
11// ----- Standard constructor ------------------------------------------
12vetoHitOnTrack::vetoHitOnTrack(Int_t hitID, Float_t dist)
13 : TObject(), fDist(dist), fHitID(hitID) {}
14
15// -------------------------------------------------------------------------
16
17// ----- Destructor ----------------------------------------------------
19// -------------------------------------------------------------------------
virtual ~vetoHitOnTrack()