R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BHit.cxx
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (C) 2019 GSI Helmholtzzentrum für Schwerionenforschung GmbH *
3 * Copyright (C) 2019-2025 Members of R3B Collaboration *
4 * *
5 * This software is distributed under the terms of the *
6 * GNU General Public Licence (GPL) version 3, *
7 * copied verbatim in the file "LICENSE". *
8 * *
9 * In applying this license GSI does not waive the privileges and immunities *
10 * granted to it by virtue of its status as an Intergovernmental Organization *
11 * or submit itself to any jurisdiction. *
12 ******************************************************************************/
13
14// -----------------------------------------------------------------------------
15// ----- R3BHit -----
16// ----- Created on 01.03.2018 by D.Kresan -----
17// -----------------------------------------------------------------------------
18
19#include "R3BHit.h"
20
22 : fDetId(0)
23 , fX(0.)
24 , fY(0.)
25 , fEloss(0.)
26 , fTime(0.)
27 , fHitId(-1)
28{
29}
30
31R3BHit::R3BHit(Int_t detId, Double_t x, Double_t y, Double_t eloss, Double_t time, Int_t hitId)
32 : fDetId(detId)
33 , fX(x)
34 , fY(y)
35 , fEloss(eloss)
36 , fTime(time)
37 , fHitId(hitId)
38{
39}
40
42
ClassImp(R3B::Neuland::Cal2HitPar)
Double_t fTime
Definition R3BHit.h:47
Double_t fY
Definition R3BHit.h:45
Double_t fX
Definition R3BHit.h:44
Int_t fDetId
Definition R3BHit.h:43
Double_t fEloss
Definition R3BHit.h:46
R3BHit()
Definition R3BHit.cxx:21
Int_t fHitId
Definition R3BHit.h:48
virtual ~R3BHit()
Definition R3BHit.cxx:41