| [1197] | 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: G4SmartTrackStack.hh,v 1.3 2009/09/16 23:10:46 asaim Exp $
|
|---|
| [1228] | 28 | // GEANT4 tag $Name: geant4-09-03 $
|
|---|
| [1197] | 29 | //
|
|---|
| 30 | //
|
|---|
| 31 | // Last Modification : 09/Dec/96 M.Asai
|
|---|
| 32 | //
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 | #ifndef G4SmartTrackStack_h
|
|---|
| 36 | #define G4SmartTrackStack_h 1
|
|---|
| 37 |
|
|---|
| 38 | #include "G4StackedTrack.hh"
|
|---|
| 39 | #include "G4TrackStack.hh"
|
|---|
| 40 | #include "globals.hh"
|
|---|
| 41 |
|
|---|
| 42 | // class description:
|
|---|
| 43 | //
|
|---|
| 44 | // This is a stack class used by G4StackManager. This class object
|
|---|
| 45 | // stores G4StackedTrack class objects in the form of bi-directional
|
|---|
| 46 | // linked list.
|
|---|
| 47 |
|
|---|
| 48 | class G4SmartTrackStack
|
|---|
| 49 | {
|
|---|
| 50 | public:
|
|---|
| 51 | G4SmartTrackStack();
|
|---|
| 52 | ~G4SmartTrackStack();
|
|---|
| 53 |
|
|---|
| 54 | private:
|
|---|
| 55 | const G4SmartTrackStack & operator=
|
|---|
| 56 | (const G4SmartTrackStack &right);
|
|---|
| 57 | G4int operator==(const G4SmartTrackStack &right) const;
|
|---|
| 58 | G4int operator!=(const G4SmartTrackStack &right) const;
|
|---|
| 59 |
|
|---|
| 60 | public:
|
|---|
| 61 | void PushToStack(G4StackedTrack * aStackedTrack);
|
|---|
| 62 | G4StackedTrack * PopFromStack();
|
|---|
| 63 | void clear();
|
|---|
| 64 | void TransferTo(G4TrackStack * aStack);
|
|---|
| 65 |
|
|---|
| 66 | private:
|
|---|
| 67 | G4int fTurn;
|
|---|
| 68 | G4int nTurn; // should be 5
|
|---|
| 69 | G4TrackStack* stacks[5];
|
|---|
| 70 | // = 0 : all primaries and secondaries except followings
|
|---|
| 71 | // = 1 : secondary neutrons
|
|---|
| 72 | // = 2 : secondary electrons
|
|---|
| 73 | // = 3 : secondary gammas
|
|---|
| 74 | // = 4 : secondary positrons
|
|---|
| 75 | G4int nStick;
|
|---|
| 76 | G4int safetyValve1;
|
|---|
| 77 | G4int safetyValve2;
|
|---|
| 78 | G4int maxNTracks;
|
|---|
| 79 |
|
|---|
| 80 | public:
|
|---|
| 81 | inline G4int GetNTrack() const
|
|---|
| 82 | { return n_stackedTrack(); }
|
|---|
| 83 | inline G4int GetMaxNTrack() const
|
|---|
| 84 | { return maxNTracks; }
|
|---|
| 85 |
|
|---|
| 86 | private:
|
|---|
| 87 | inline G4int n_stackedTrack() const
|
|---|
| 88 | {
|
|---|
| 89 | return stacks[0]->GetNTrack()+stacks[1]->GetNTrack()
|
|---|
| 90 | +stacks[2]->GetNTrack()+stacks[3]->GetNTrack()+stacks[4]->GetNTrack();
|
|---|
| 91 | }
|
|---|
| 92 | };
|
|---|
| 93 |
|
|---|
| 94 | #endif
|
|---|
| 95 |
|
|---|