ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4AdjointTrackingAction.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4AdjointTrackingAction.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 //
27 //
28 //
29 //---------------------------------------------------------------
30 //
31 // G4AdjointTrackingAction.hh
32 //
33 // class description:
34 // This class represents actions taken place at the
35 // the start/end point of processing one track during an adjoint simulation
36 //
37 //---------------------------------------------------------------
38 
39 
40 
41 #ifndef G4AdjointTrackingAction_h
42 #define G4AdjointTrackingAction_h 1
43 #include "globals.hh"
44 #include "G4UserTrackingAction.hh"
45 #include "G4ThreeVector.hh"
46 #include <vector>
48 class G4Track;
53 {
54 
55 //--------
56 public: // with description
57 //--------
58 
59 // Constructor & Destructor
61  virtual ~G4AdjointTrackingAction();
62 
63 // Member functions
64  virtual void PreUserTrackingAction(const G4Track*);
65  virtual void PostUserTrackingAction(const G4Track*);
68 
69 //inline methods
71  theUserFwdTrackingAction = anAction;}
74  inline G4double GetEkinAtEndOfLastAdjointTrack(size_t i=0){ return last_ekin_vec[i];}
81  inline G4int GetLastFwdParticleIndex(size_t i=0){
82  return last_fwd_part_index_vec[i];};
84  inline void SetListOfPrimaryFwdParticles( std::vector<G4ParticleDefinition*>*
85  aListOfParticles){pListOfPrimaryFwdParticles=aListOfParticles;}
86 
87 
88 private:
92 
93 
94  //adjoint particle information on the external surface
95  //-----------------------------
98  G4double last_ekin,last_ekin_nuc; //last_ekin_nuc=last_ekin/nuc, nuc is 1 if not a nucleus
104  std::vector<G4ParticleDefinition*>* pListOfPrimaryFwdParticles;
105 
106  std::vector<G4ThreeVector> last_pos_vec;
107  std::vector<G4ThreeVector> last_direction_vec;
108  std::vector<G4double> last_ekin_vec;
109  std::vector<G4double> last_ekin_nuc_vec;
110  std::vector<G4double> last_cos_th_vec;
111  std::vector<G4double> last_weight_vec;
112  std::vector<G4int> last_fwd_part_PDGEncoding_vec;
113  std::vector<G4int> last_fwd_part_index_vec;
114 
115 };
116 
117 #endif
118 
119