Geant4-11
G4TrackStack.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// Class description:
27//
28// This is a stack class used by G4StackManager. This class object
29// stores G4StackedTrack class objects in the form of bi-directional
30// linked list.
31
32// Author: Makoto Asai (SLAC) - 09/Dec/96
33// --------------------------------------------------------------------
34#ifndef G4TrackStack_hh
35#define G4TrackStack_hh 1
36
37#include <vector>
38
39#include "G4StackedTrack.hh"
40#include "G4Types.hh"
41
43
44class G4TrackStack : public std::vector<G4StackedTrack>
45{
46 public:
47
49 : safetyValue1(0), safetyValue2(0), nstick(0) {}
50 G4TrackStack(std::size_t n)
51 : safetyValue1(G4int(4*n/5)),
52 safetyValue2(G4int(4*n/5-100)), nstick(100) { reserve(n); }
54
56 G4bool operator==(const G4TrackStack&) const = delete;
57 G4bool operator!=(const G4TrackStack&) const = delete;
58
59 inline void PushToStack(const G4StackedTrack& aStackedTrack)
60 { push_back(aStackedTrack); }
62 { G4StackedTrack st = back(); pop_back(); return st; }
63 void TransferTo(G4TrackStack* aStack);
64 void TransferTo(G4SmartTrackStack* aStack);
65
66 void clearAndDestroy();
67
68 inline std::size_t GetNTrack() const { return size(); }
69 inline std::size_t GetMaxNTrack() const { return max_size(); }
70 inline G4int GetSafetyValue1() const { return safetyValue1; }
71 inline G4int GetSafetyValue2() const { return safetyValue2; }
72 inline G4int GetNStick() const { return nstick; }
73
74 G4double getTotalEnergy(void) const;
75 inline void SetSafetyValue2(G4int x) { safetyValue2 = x < 0 ? 0 : x; }
76
77 private:
78
82};
83
84#endif
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
void PushToStack(const G4StackedTrack &aStackedTrack)
Definition: G4TrackStack.hh:59
void clearAndDestroy()
Definition: G4TrackStack.cc:41
G4bool operator!=(const G4TrackStack &) const =delete
G4int GetSafetyValue2() const
Definition: G4TrackStack.hh:71
G4int safetyValue2
Definition: G4TrackStack.hh:80
void TransferTo(G4TrackStack *aStack)
Definition: G4TrackStack.cc:51
G4double getTotalEnergy(void) const
Definition: G4TrackStack.cc:68
void SetSafetyValue2(G4int x)
Definition: G4TrackStack.hh:75
G4bool operator==(const G4TrackStack &) const =delete
G4int safetyValue1
Definition: G4TrackStack.hh:79
G4TrackStack(std::size_t n)
Definition: G4TrackStack.hh:50
std::size_t GetNTrack() const
Definition: G4TrackStack.hh:68
G4TrackStack & operator=(const G4TrackStack &)=delete
G4StackedTrack PopFromStack()
Definition: G4TrackStack.hh:61
G4int GetSafetyValue1() const
Definition: G4TrackStack.hh:70
std::size_t GetMaxNTrack() const
Definition: G4TrackStack.hh:69
G4int GetNStick() const
Definition: G4TrackStack.hh:72