R3BROOT
R3B analysis software
Loading...
Searching...
No Matches
R3BTrack.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// ----- R3BTrack -----
16// ----- Created on 09.03.2020 by M.Heil -----
17// -----------------------------------------------------------------------------
18
19#include "R3BTrack.h"
20
22 : fX(0.)
23 , fY(0.)
24 , fZ(0.)
25 , fPx(0.)
26 , fPy(0.)
27 , fPz(0.)
28 , fQ(0)
29 , fAoZ(0.)
30 , fChix(0.)
31 , fChiy(0.)
32 , fQuality(0.)
33{
34}
35
37 Double_t y,
38 Double_t z,
39 Double_t px,
40 Double_t py,
41 Double_t pz,
42 Double_t q,
43 Double_t AoZ,
44 Double_t chix,
45 Double_t chiy,
46 Int_t quality)
47 : fX(x)
48 , fY(y)
49 , fZ(z)
50 , fPx(px)
51 , fPy(py)
52 , fPz(pz)
53 , fQ(q)
54 , fAoZ(AoZ)
55 , fChix(chix)
56 , fChiy(chiy)
57 , fQuality(quality)
58{
59}
60
62
ClassImp(R3B::Neuland::Cal2HitPar)
Double_t fX
Definition R3BTrack.h:54
Double_t fPx
Definition R3BTrack.h:57
Double_t fPy
Definition R3BTrack.h:58
Double_t fAoZ
Definition R3BTrack.h:61
virtual ~R3BTrack()
Definition R3BTrack.cxx:61
Int_t fQuality
Definition R3BTrack.h:64
Double_t fY
Definition R3BTrack.h:55
Double_t fChix
Definition R3BTrack.h:62
Double_t fPz
Definition R3BTrack.h:59
Double_t fChiy
Definition R3BTrack.h:63
Double_t fZ
Definition R3BTrack.h:56
Double_t fQ
Definition R3BTrack.h:60