Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4AdjointTrackingAction.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 //
27 // $Id: G4AdjointTrackingAction.hh 75409 2013-11-01 00:31:00Z ldesorgh$
28 //
29 //
30 //---------------------------------------------------------------
31 //
32 // G4AdjointTrackingAction.hh
33 //
34 // class description:
35 // This class represents actions taken place at the
36 // the start/end point of processing one track during an adjoint simulation
37 //
38 //---------------------------------------------------------------
39 
40 
41 
42 #ifndef G4AdjointTrackingAction_h
43 #define G4AdjointTrackingAction_h 1
44 #include "globals.hh"
45 #include "G4UserTrackingAction.hh"
46 #include "G4ThreeVector.hh"
48 class G4Track;
49 ///////////////////////////
51 ///////////////////////////
52 {
53 
54 //--------
55 public: // with description
56 //--------
57 
58 // Constructor & Destructor
60  virtual ~G4AdjointTrackingAction();
61 
62 // Member functions
63  virtual void PreUserTrackingAction(const G4Track*);
64  virtual void PostUserTrackingAction(const G4Track*);
66 
67 //inline methods
69  theUserFwdTrackingAction = anAction;}
71  inline G4ThreeVector GetDirectionAtEndOfLastAdjointTrack(){ return last_direction;}
72  inline G4double GetEkinAtEndOfLastAdjointTrack(){ return last_ekin;}
73  inline G4double GetEkinNucAtEndOfLastAdjointTrack(){ return last_ekin_nuc;}
74  inline G4double GetWeightAtEndOfLastAdjointTrack(){return last_weight;}
75  inline G4double GetCosthAtEndOfLastAdjointTrack(){return last_cos_th;}
76  inline const G4String& GetFwdParticleNameAtEndOfLastAdjointTrack(){return last_fwd_part_name;}
77  inline G4int GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack(){return last_fwd_part_PDGEncoding;}
78 
79 
80 private:
81  G4AdjointSteppingAction* theAdjointSteppingAction;
82  G4UserTrackingAction* theUserFwdTrackingAction;
83  G4bool is_adjoint_tracking_mode;
84 
85 
86  //adjoint particle information on the external surface
87  //-----------------------------
88  G4ThreeVector last_pos;
89  G4ThreeVector last_direction;
90  G4double last_ekin,last_ekin_nuc; //last_ekin_nuc=last_ekin/nuc, nuc is 1 if not a nucleus
91  G4double last_cos_th;
92  G4String last_fwd_part_name;
93  G4int last_fwd_part_PDGEncoding;
94  G4double last_weight;
95  G4int ID_of_last_particle_that_reach_the_ext_source;
96 
97 
98 };
99 
100 #endif
101 
102 
G4int GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack()
const G4String & GetFwdParticleNameAtEndOfLastAdjointTrack()
G4AdjointTrackingAction(G4AdjointSteppingAction *anAction)
int G4int
Definition: G4Types.hh:78
virtual void PreUserTrackingAction(const G4Track *)
bool G4bool
Definition: G4Types.hh:79
virtual void PostUserTrackingAction(const G4Track *)
double G4double
Definition: G4Types.hh:76
void SetUserForwardTrackingAction(G4UserTrackingAction *anAction)
G4ThreeVector GetPositionAtEndOfLastAdjointTrack()
G4ThreeVector GetDirectionAtEndOfLastAdjointTrack()