Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4MCTSimVertex.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// G4MCTSimVertex
27
28// Author: Youhei Morita, 12.09.2001
29// --------------------------------------------------------------------
30#ifndef G4MCTSIMVERTEX_HH
31#define G4MCTSIMVERTEX_HH 1
32
33#include <iostream>
34#include <vector>
35
36#include "G4Types.hh"
37#include "G4ThreeVector.hh"
38#include "G4MCTSimParticle.hh"
39
41{
42 public:
43
47 const G4String& vname, G4int ncopy,
48 const G4String& pname);
50
51 inline G4MCTSimVertex(const G4MCTSimVertex& right);
52 inline G4MCTSimVertex& operator=(const G4MCTSimVertex& right);
53 // copy constructor and assignment operator
54
55 inline void SetID(G4int i);
56 inline G4int GetID() const;
57
58 inline void SetPosition(const G4ThreeVector& x);
59 inline const G4ThreeVector& GetPosition() const;
60
61 inline void SetTime(G4double t);
62 inline G4double GetTime() const;
63
64 inline void SetVolumeName(const G4String& vname);
65 inline const G4String& GetVolumeName() const;
66
67 inline void SetVolumeNumber(G4int n);
68 inline G4int GetVolumeNumber() const;
69
70 inline void SetCreatorProcessName(const G4String& pname);
71 inline const G4String& GetCreatorProcessName() const;
72
73 inline void SetStoreFlag(G4bool q);
74 inline G4bool GetStoreFlag() const;
75
76 inline void SetInParticle(const G4MCTSimParticle* in);
77 inline void SetInParticle(G4int in);
78 inline G4int GetInParticleTrackID() const;
79
80 inline G4int GetNofOutParticles() const;
81 inline G4int AddOutParticle(const G4MCTSimParticle* out);
82 inline G4int AddOutParticle(G4int out);
83 inline G4int GetOutParticleTrackID(G4int i) const;
84
85 void Print(std::ostream& ostr = std::cout) const;
86
87 private:
88
89 G4int inParticleTrackID = 0;
90 std::vector<G4int> outParticleTrackIDList;
91
92 G4String volumeName = "";
93 G4String creatorProcessName = "none";
94 G4ThreeVector position;
95 G4double time = 0.0;
96 G4int id = -1; // assigned independently from G4
97 G4int volumeNumber = -1;
98 G4bool storeFlag = false;
99};
100
101// ====================================================================
102// inline methods
103// ====================================================================
104
106{
107 *this = right;
108}
109
111 const G4MCTSimVertex& right)
112{
113 inParticleTrackID = right.inParticleTrackID;
114 outParticleTrackIDList = right.outParticleTrackIDList;
115
116 id = right.id;
117 position = right.position;
118 time = right.time;
119 volumeName = right.volumeName;
120 volumeNumber = right.volumeNumber;
121 creatorProcessName = right.creatorProcessName;
122
123 return *this;
124}
125
127{
128 id = i;
129}
130
132{
133 return id;
134}
135
137{
138 position = x;
139}
140
142{
143 return position;
144}
145
147{
148 time = t;
149}
150
152{
153 return time;
154}
155
157{
158 volumeName = vname;
159}
160
162{
163 return volumeName;
164}
165
167{
168 volumeNumber = n;
169}
170
172{
173 return volumeNumber;
174}
175
177{
178 creatorProcessName = pname;
179}
180
182{
183 return creatorProcessName;
184}
185
187{
188 storeFlag = q;
189}
190
192{
193 return storeFlag;
194}
195
197{
198 inParticleTrackID = in->GetTrackID();
199}
200
202{
203 inParticleTrackID = in;
204}
205
207{
208 return inParticleTrackID;
209}
210
212{
213 return (G4int)outParticleTrackIDList.size();
214}
215
217{
218 outParticleTrackIDList.push_back(out->GetTrackID());
219 return (G4int)outParticleTrackIDList.size();
220}
221
223{
224 outParticleTrackIDList.push_back(out);
225 return (G4int)outParticleTrackIDList.size();
226}
227
229{
230 G4int size = (G4int)outParticleTrackIDList.size();
231 if(i >= 0 && i < size)
232 return outParticleTrackIDList[i];
233 else
234 return 0;
235}
236
237#endif
CLHEP::Hep3Vector G4ThreeVector
double G4double
Definition G4Types.hh:83
bool G4bool
Definition G4Types.hh:86
int G4int
Definition G4Types.hh:85
G4int GetTrackID() const
void SetVolumeName(const G4String &vname)
void SetStoreFlag(G4bool q)
G4int AddOutParticle(const G4MCTSimParticle *out)
void SetVolumeNumber(G4int n)
G4int GetVolumeNumber() const
const G4ThreeVector & GetPosition() const
void SetID(G4int i)
G4double GetTime() const
void SetCreatorProcessName(const G4String &pname)
void Print(std::ostream &ostr=std::cout) const
const G4String & GetCreatorProcessName() const
G4int GetID() const
const G4String & GetVolumeName() const
void SetTime(G4double t)
G4bool GetStoreFlag() const
void SetInParticle(const G4MCTSimParticle *in)
G4int GetNofOutParticles() const
G4MCTSimVertex & operator=(const G4MCTSimVertex &right)
G4int GetOutParticleTrackID(G4int i) const
void SetPosition(const G4ThreeVector &x)
G4int GetInParticleTrackID() const