ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4TrackStack.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4TrackStack.hh
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 
42 class G4SmartTrackStack;
43 
44 class G4TrackStack : public std::vector<G4StackedTrack>
45 {
46  public:
47 
49  : safetyValue1(0), safetyValue2(0), nstick(0) {}
50  G4TrackStack(size_t n)
51  : safetyValue1(G4int(4*n/5)),
52  safetyValue2(G4int(4*n/5-100)), nstick(100) { reserve(n); }
53  ~G4TrackStack();
54 
55  G4TrackStack& operator=(const G4TrackStack&) = delete;
56  G4bool operator==(const G4TrackStack&) const = delete;
57  G4bool operator!=(const G4TrackStack&) const = delete;
58 
59  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  size_t GetNTrack() const { return size(); }
69  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  void SetSafetyValue2(G4int x) { safetyValue2 = x < 0 ? 0 : x; }
76 
77  private:
78 
82 };
83 
84 #endif