Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4TrajectoryPoint.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27// $Id$
28//
29//---------------------------------------------------------------
30//
31// G4TrajectoryPoint.hh
32//
33// class description:
34// This class represents the trajectory of a particle tracked.
35// It includes information of
36// 1) List of trajectory points which compose the trajectory,
37// 2) static information of particle which generated the
38// trajectory,
39// 3) trackID and parent particle ID of the trajectory,
40// 4) termination condition of the trajectory.
41//
42// Contact:
43// Questions and comments to this code should be sent to
44// Katsuya Amako (e-mail: [email protected])
45// Takashi Sasaki (e-mail: [email protected])
46//
47// ---------------------------------------------------------------
48
49#ifndef G4TrajectoryPoint_h
50#define G4TrajectoryPoint_h 1
51
52#include "G4VTrajectoryPoint.hh"
53#include "globals.hh" // Include from 'global'
54#include "G4ThreeVector.hh" // Include from 'geometry'
55#include "G4Allocator.hh" // Include from 'particle+matter'
56
57
58////////////////////////
60////////////////////////
61{
62
63//--------
64public: // without description
65//--------
66
67// Constructor/Destructor
71 virtual ~G4TrajectoryPoint();
72
73// Operators
74 inline void *operator new(size_t);
75 inline void operator delete(void *aTrajectoryPoint);
76 inline int operator==(const G4TrajectoryPoint& right) const
77 { return (this==&right); };
78
79// Get/Set functions
80 inline const G4ThreeVector GetPosition() const
81 { return fPosition; };
82
83// Get method for HEPRep style attributes
84 virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
85 virtual std::vector<G4AttValue>* CreateAttValues() const;
86
87//---------
88 private:
89//---------
90
91// Member data
92 G4ThreeVector fPosition;
93
94};
95
96#if defined G4TRACKING_ALLOC_EXPORT
98#else
100#endif
101
102inline void* G4TrajectoryPoint::operator new(size_t)
103{
104 void *aTrajectoryPoint;
105 aTrajectoryPoint = (void *) aTrajectoryPointAllocator.MallocSingle();
106 return aTrajectoryPoint;
107}
108
109inline void G4TrajectoryPoint::operator delete(void *aTrajectoryPoint)
110{
111 aTrajectoryPointAllocator.FreeSingle((G4TrajectoryPoint *) aTrajectoryPoint);
112}
113
114#endif
115
G4DLLIMPORT G4Allocator< G4TrajectoryPoint > aTrajectoryPointAllocator
#define G4DLLIMPORT
Definition: G4Types.hh:56
#define G4DLLEXPORT
Definition: G4Types.hh:55
virtual ~G4TrajectoryPoint()
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const
const G4ThreeVector GetPosition() const
virtual std::vector< G4AttValue > * CreateAttValues() const
int operator==(const G4TrajectoryPoint &right) const