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

#include <G4ClonedTrajectoryPoint.hh>

+ Inheritance diagram for G4ClonedTrajectoryPoint:

Public Member Functions

 G4ClonedTrajectoryPoint ()=default
 
 G4ClonedTrajectoryPoint (const G4TrajectoryPoint &right)
 
 ~G4ClonedTrajectoryPoint () override
 
void * operator new (size_t)
 
void operator delete (void *aTrajectoryPoint)
 
G4bool operator== (const G4ClonedTrajectoryPoint &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
 

Detailed Description

Definition at line 51 of file G4ClonedTrajectoryPoint.hh.

Constructor & Destructor Documentation

◆ G4ClonedTrajectoryPoint() [1/2]

G4ClonedTrajectoryPoint::G4ClonedTrajectoryPoint ( )
default

◆ G4ClonedTrajectoryPoint() [2/2]

G4ClonedTrajectoryPoint::G4ClonedTrajectoryPoint ( const G4TrajectoryPoint & right)

Definition at line 50 of file G4ClonedTrajectoryPoint.cc.

50: fPosition(right.fPosition) {}

◆ ~G4ClonedTrajectoryPoint()

G4ClonedTrajectoryPoint::~G4ClonedTrajectoryPoint ( )
overridedefault

Member Function Documentation

◆ CreateAttValues()

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

Reimplemented from G4VTrajectoryPoint.

Definition at line 65 of file G4ClonedTrajectoryPoint.cc.

66{
67 auto values = new std::vector<G4AttValue>;
68
69 values->push_back(G4AttValue("Pos", G4BestUnit(fPosition, "Length"), ""));
70
71#ifdef G4ATTDEBUG
72 G4cout << G4AttCheck(values, GetAttDefs());
73#endif
74
75 return values;
76}
#define G4BestUnit(a, b)
G4GLOB_DLL std::ostream G4cout
const std::map< G4String, G4AttDef > * GetAttDefs() const override

◆ GetAttDefs()

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

Reimplemented from G4VTrajectoryPoint.

Definition at line 54 of file G4ClonedTrajectoryPoint.cc.

55{
56 G4bool isNew;
57 std::map<G4String, G4AttDef>* store = G4AttDefStore::GetInstance("G4TrajectoryPoint", isNew);
58 if (isNew) {
59 G4String Pos("Pos");
60 (*store)[Pos] = G4AttDef(Pos, "Position", "Physics", "G4BestUnit", "G4ThreeVector");
61 }
62 return store;
63}
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().

◆ GetPosition()

const G4ThreeVector G4ClonedTrajectoryPoint::GetPosition ( ) const
inlineoverridevirtual

Implements G4VTrajectoryPoint.

Definition at line 68 of file G4ClonedTrajectoryPoint.hh.

68{ return fPosition; }

◆ operator delete()

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

Definition at line 88 of file G4ClonedTrajectoryPoint.hh.

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

◆ operator new()

void * G4ClonedTrajectoryPoint::operator new ( size_t )
inline

Definition at line 80 of file G4ClonedTrajectoryPoint.hh.

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

◆ operator==()

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

Definition at line 93 of file G4ClonedTrajectoryPoint.hh.

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

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