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

#include <G4ClonedSmoothTrajectoryPoint.hh>

+ Inheritance diagram for G4ClonedSmoothTrajectoryPoint:

Public Member Functions

 G4ClonedSmoothTrajectoryPoint ()=default
 
 G4ClonedSmoothTrajectoryPoint (G4ThreeVector pos, std::vector< G4ThreeVector > *auxiliaryPoints)
 
 G4ClonedSmoothTrajectoryPoint (const G4SmoothTrajectoryPoint &right)
 
 ~G4ClonedSmoothTrajectoryPoint () override
 
void * operator new (size_t)
 
void operator delete (void *aTrajectoryPoint)
 
G4bool operator== (const G4ClonedSmoothTrajectoryPoint &right) const
 
const G4ThreeVector GetPosition () const override
 
const std::vector< G4ThreeVector > * GetAuxiliaryPoints () 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
 

Detailed Description

Definition at line 51 of file G4ClonedSmoothTrajectoryPoint.hh.

Constructor & Destructor Documentation

◆ G4ClonedSmoothTrajectoryPoint() [1/3]

G4ClonedSmoothTrajectoryPoint::G4ClonedSmoothTrajectoryPoint ( )
default

◆ G4ClonedSmoothTrajectoryPoint() [2/3]

G4ClonedSmoothTrajectoryPoint::G4ClonedSmoothTrajectoryPoint ( G4ThreeVector pos,
std::vector< G4ThreeVector > * auxiliaryPoints )

Definition at line 50 of file G4ClonedSmoothTrajectoryPoint.cc.

52 : fPosition(pos), fAuxiliaryPointVector(auxiliaryPoints)
53{}

◆ G4ClonedSmoothTrajectoryPoint() [3/3]

G4ClonedSmoothTrajectoryPoint::G4ClonedSmoothTrajectoryPoint ( const G4SmoothTrajectoryPoint & right)

Definition at line 55 of file G4ClonedSmoothTrajectoryPoint.cc.

56 : fPosition(right.fPosition), fAuxiliaryPointVector(right.fAuxiliaryPointVector)
57{}

◆ ~G4ClonedSmoothTrajectoryPoint()

G4ClonedSmoothTrajectoryPoint::~G4ClonedSmoothTrajectoryPoint ( )
override

Definition at line 59 of file G4ClonedSmoothTrajectoryPoint.cc.

59{ delete fAuxiliaryPointVector; }

Member Function Documentation

◆ CreateAttValues()

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

Reimplemented from G4VTrajectoryPoint.

Definition at line 76 of file G4ClonedSmoothTrajectoryPoint.cc.

77{
78 auto values = new std::vector<G4AttValue>;
79
80 if (fAuxiliaryPointVector != nullptr) {
81 for (const auto& iAux : *fAuxiliaryPointVector) {
82 values->push_back(G4AttValue("Aux", G4BestUnit(iAux, "Length"), ""));
83 }
84 }
85
86 values->push_back(G4AttValue("Pos", G4BestUnit(fPosition, "Length"), ""));
87
88#ifdef G4ATTDEBUG
89 G4cout << G4AttCheck(values, GetAttDefs());
90#endif
91
92 return values;
93}
#define G4BestUnit(a, b)
G4GLOB_DLL std::ostream G4cout
const std::map< G4String, G4AttDef > * GetAttDefs() const override

◆ GetAttDefs()

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

Reimplemented from G4VTrajectoryPoint.

Definition at line 61 of file G4ClonedSmoothTrajectoryPoint.cc.

62{
63 G4bool isNew;
64 std::map<G4String, G4AttDef>* store =
65 G4AttDefStore::GetInstance("G4ClonedSmoothTrajectoryPoint", isNew);
66 if (isNew) {
67 G4String Pos("Pos");
68 (*store)[Pos] = G4AttDef(Pos, "Step Position", "Physics", "G4BestUnit", "G4ThreeVector");
69 G4String Aux("Aux");
70 (*store)[Aux] =
71 G4AttDef(Aux, "Auxiliary Point Position", "Physics", "G4BestUnit", "G4ThreeVector");
72 }
73 return store;
74}
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().

◆ GetAuxiliaryPoints()

const std::vector< G4ThreeVector > * G4ClonedSmoothTrajectoryPoint::GetAuxiliaryPoints ( ) const
inlineoverridevirtual

Reimplemented from G4VTrajectoryPoint.

Definition at line 68 of file G4ClonedSmoothTrajectoryPoint.hh.

69 {
70 return fAuxiliaryPointVector;
71 }

◆ GetPosition()

const G4ThreeVector G4ClonedSmoothTrajectoryPoint::GetPosition ( ) const
inlineoverridevirtual

Implements G4VTrajectoryPoint.

Definition at line 67 of file G4ClonedSmoothTrajectoryPoint.hh.

67{ return fPosition; }

◆ operator delete()

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

Definition at line 93 of file G4ClonedSmoothTrajectoryPoint.hh.

94{
96}
G4TRACKING_DLL G4Allocator< G4ClonedSmoothTrajectoryPoint > *& aClonedSmoothTrajectoryPointAllocator()

◆ operator new()

void * G4ClonedSmoothTrajectoryPoint::operator new ( size_t )
inline

Definition at line 85 of file G4ClonedSmoothTrajectoryPoint.hh.

86{
88 aClonedSmoothTrajectoryPointAllocator() = new G4Allocator<G4ClonedSmoothTrajectoryPoint>;
89 }
90 return (void*)aClonedSmoothTrajectoryPointAllocator()->MallocSingle();
91}

◆ operator==()

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

Definition at line 98 of file G4ClonedSmoothTrajectoryPoint.hh.

99{
100 return (this == &r);
101}

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