Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4VTrajectoryPoint.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// G4VTrajectoryPoint
27//
28// Class description:
29//
30// This class is the abstract base class representing the point
31// forming a trajectory. It includes information of a the point.
32
33// Contact:
34// Questions and comments to this code should be sent to
35// Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
36// Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
37// --------------------------------------------------------------------
38#ifndef G4VTrajectoryPoint_hh
39#define G4VTrajectoryPoint_hh 1
40
41#include "G4ThreeVector.hh"
42#include "globals.hh"
43
44#include <map>
45#include <vector>
46#include <memory>
47
48class G4AttDef;
49class G4AttValue;
50
52{
53 public:
54 // Constructor/Destructor
55 G4VTrajectoryPoint() = default;
56 virtual ~G4VTrajectoryPoint() = default;
57
58 // Equality operator
59 G4bool operator==(const G4VTrajectoryPoint& right) const { return (this == &right); }
60
61 // Return point position
62 virtual const G4ThreeVector GetPosition() const = 0;
63
64 // Get method for a vector of auxiliary points.
65 // If implemented by a derived class, returns a pointer to a list
66 // of auxiliary points, e.g., intermediate points used during the
67 // calculation of the step that can be used for drawing a smoother
68 // trajectory. The user must test the validity of this pointer
69 virtual const std::vector<G4ThreeVector>* GetAuxiliaryPoints() const { return nullptr; }
70
71 // Get method for HEPRep style attribute definitions.
72 // If implemented by a derived class, returns a pointer to a map of
73 // attribute definitions for the attribute values below. The user
74 // must test the validity of this pointer. See G4Trajectory for an
75 // example of a concrete implementation of this method
76 virtual const std::map<G4String, G4AttDef>* GetAttDefs() const { return nullptr; }
77
78 // Get method for HEPRep style attribute values.
79 // If implemented by a derived class, returns a pointer to a list
80 // of attribute values suitable, e.g., for picking. Each must
81 // refer to an attribute definition in the above map; its name is
82 // the key. The user must test the validity of this pointer (it
83 // must be non-zero and conform to the G4AttDefs, which may be
84 // checked with G4AttCheck) and delete the list after use. See
85 // G4Trajectory for an example of a concrete implementation of this
86 // method and G4VTrajectory::ShowTrajectory() for an example of its use.
87 // The caller is expected to take ownership of the returned pointer
88 // and delete it appropriately.
89 virtual std::vector<G4AttValue>* CreateAttValues() const { return nullptr; }
90
91 // Smart access function - creates on request and stores for future
92 // access. An invalid shared pointer means "not available". Usage:
93 // const auto trajectoryPointAttValues = aTrajectoryPoint->GetAttValues();
94 // if (trajectoryPointAttValues) { ...
95 // then use as a normal pointer, but do not delete - simply allow
96 // to go out of scope.
97 std::shared_ptr<std::vector<G4AttValue>> GetAttValues() const;
98
99protected:
100 G4VTrajectoryPoint(const G4VTrajectoryPoint& right) = default;
104
105private:
106 // Cached att values
107 mutable std::shared_ptr<std::vector<G4AttValue>> fpAttValues;
108};
109
110#endif
CLHEP::Hep3Vector G4ThreeVector
bool G4bool
Definition G4Types.hh:86
std::shared_ptr< std::vector< G4AttValue > > GetAttValues() const
G4VTrajectoryPoint(const G4VTrajectoryPoint &right)=default
G4VTrajectoryPoint(G4VTrajectoryPoint &&)=default
virtual std::vector< G4AttValue > * CreateAttValues() const
G4VTrajectoryPoint & operator=(G4VTrajectoryPoint &&)=default
G4VTrajectoryPoint & operator=(const G4VTrajectoryPoint &right)=default
virtual const std::vector< G4ThreeVector > * GetAuxiliaryPoints() const
virtual ~G4VTrajectoryPoint()=default
G4VTrajectoryPoint()=default
virtual const G4ThreeVector GetPosition() const =0
G4bool operator==(const G4VTrajectoryPoint &right) const
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const