Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TrajectoryPoint Class Reference

#include <G4TrajectoryPoint.hh>

+ Inheritance diagram for G4TrajectoryPoint:

Public Member Functions

 G4TrajectoryPoint ()=default
 
 G4TrajectoryPoint (G4ThreeVector pos)
 
 G4TrajectoryPoint (const G4TrajectoryPoint &right)
 
 ~G4TrajectoryPoint () override
 
void * operator new (size_t)
 
void operator delete (void *aTrajectoryPoint)
 
G4bool operator== (const G4TrajectoryPoint &right) const
 
const G4ThreeVector GetPosition () const override
 
const std::map< G4String, G4AttDef > * GetAttDefs () const override
 
std::vector< G4AttValue > * CreateAttValues () const override
 
- Public Member Functions inherited from G4VTrajectoryPoint
 G4VTrajectoryPoint ()=default
 
virtual ~G4VTrajectoryPoint ()=default
 
G4bool operator== (const G4VTrajectoryPoint &right) const
 
virtual const std::vector< G4ThreeVector > * GetAuxiliaryPoints () const
 

Friends

class G4ClonedTrajectoryPoint
 

Detailed Description

Definition at line 48 of file G4TrajectoryPoint.hh.

Constructor & Destructor Documentation

◆ G4TrajectoryPoint() [1/3]

G4TrajectoryPoint::G4TrajectoryPoint ( )
default

◆ G4TrajectoryPoint() [2/3]

G4TrajectoryPoint::G4TrajectoryPoint ( G4ThreeVector pos)

Definition at line 58 of file G4TrajectoryPoint.cc.

58{ fPosition = pos; }

◆ G4TrajectoryPoint() [3/3]

G4TrajectoryPoint::G4TrajectoryPoint ( const G4TrajectoryPoint & right)

Definition at line 60 of file G4TrajectoryPoint.cc.

60: fPosition(right.fPosition) {}

◆ ~G4TrajectoryPoint()

G4TrajectoryPoint::~G4TrajectoryPoint ( )
overridedefault

Member Function Documentation

◆ CreateAttValues()

std::vector< G4AttValue > * G4TrajectoryPoint::CreateAttValues ( ) const
overridevirtual

Reimplemented from G4VTrajectoryPoint.

Definition at line 75 of file G4TrajectoryPoint.cc.

76{
77 auto values = new std::vector<G4AttValue>;
78
79 values->push_back(G4AttValue("Pos", G4BestUnit(fPosition, "Length"), ""));
80
81#ifdef G4ATTDEBUG
82 G4cout << G4AttCheck(values, GetAttDefs());
83#endif
84
85 return values;
86}
#define G4BestUnit(a, b)
G4GLOB_DLL std::ostream G4cout
const std::map< G4String, G4AttDef > * GetAttDefs() const override

◆ GetAttDefs()

const std::map< G4String, G4AttDef > * G4TrajectoryPoint::GetAttDefs ( ) const
overridevirtual

Reimplemented from G4VTrajectoryPoint.

Definition at line 64 of file G4TrajectoryPoint.cc.

65{
66 G4bool isNew;
67 std::map<G4String, G4AttDef>* store = G4AttDefStore::GetInstance("G4TrajectoryPoint", isNew);
68 if (isNew) {
69 G4String Pos("Pos");
70 (*store)[Pos] = G4AttDef(Pos, "Position", "Physics", "G4BestUnit", "G4ThreeVector");
71 }
72 return store;
73}
bool G4bool
Definition G4Types.hh:86
ush Pos
Definition deflate.h:92
std::map< G4String, G4AttDef > * GetInstance(const G4String &storeKey, G4bool &isNew)

Referenced by CreateAttValues(), G4VisCommandList::SetNewValue(), and G4VisCommandSceneAddTrajectories::SetNewValue().

◆ GetPosition()

const G4ThreeVector G4TrajectoryPoint::GetPosition ( ) const
inlineoverridevirtual

Implements G4VTrajectoryPoint.

Definition at line 68 of file G4TrajectoryPoint.hh.

68{ return fPosition; }

◆ operator delete()

void G4TrajectoryPoint::operator delete ( void * aTrajectoryPoint)
inline

Definition at line 88 of file G4TrajectoryPoint.hh.

89{
90 aTrajectoryPointAllocator()->FreeSingle((G4TrajectoryPoint*)aTrajectoryPoint);
91}
G4TRACKING_DLL G4Allocator< G4TrajectoryPoint > *& aTrajectoryPointAllocator()
G4TrajectoryPoint()=default

◆ operator new()

void * G4TrajectoryPoint::operator new ( size_t )
inline

Definition at line 80 of file G4TrajectoryPoint.hh.

81{
82 if (aTrajectoryPointAllocator() == nullptr) {
83 aTrajectoryPointAllocator() = new G4Allocator<G4TrajectoryPoint>;
84 }
85 return (void*)aTrajectoryPointAllocator()->MallocSingle();
86}

◆ operator==()

G4bool G4TrajectoryPoint::operator== ( const G4TrajectoryPoint & right) const
inline

Definition at line 93 of file G4TrajectoryPoint.hh.

94{
95 return (this == &right);
96}

Friends And Related Symbol Documentation

◆ G4ClonedTrajectoryPoint

friend class G4ClonedTrajectoryPoint
friend

Definition at line 50 of file G4TrajectoryPoint.hh.

Referenced by G4ClonedTrajectoryPoint.


The documentation for this class was generated from the following files: