CbmRoot
Loading...
Searching...
No Matches
CbmFsdPoint.h
Go to the documentation of this file.
1/* Copyright (C) 2023 Physikalisches Institut, Eberhard Karls Universitaet Tuebingen, Tuebingen
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Volker Friese, Florian Uhlig, Lukas Chlad [committer] */
4
12#ifndef CBMFSDPOINT_H
13#define CBMFSDPOINT_H 1
14
15#include <FairMCPoint.h> // for FairMCPoint
16
17#include <Rtypes.h> // for ClassDef
18#include <TVector3.h> // for TVector3
19
20#include <cstdint>
21#include <string> // for string
22
23class CbmFsdPoint : public FairMCPoint {
24
25public:
28
29
39 CbmFsdPoint(int32_t trackID, int32_t detID, TVector3 pos, TVector3 mom, double tof, double length, double eLoss);
40
41
43 virtual ~CbmFsdPoint();
44
45
47 virtual void Print(const Option_t* opt) const;
48
49 std::string ToString() const;
50
51 ClassDef(CbmFsdPoint, 1)
52};
53
54
55#endif
Interception of MC track with the plane representing the FSD.
Definition CbmFsdPoint.h:23
std::string ToString() const
virtual ~CbmFsdPoint()
virtual void Print(const Option_t *opt) const