ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
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>
47
class
G4AdjointSteppingAction
;
48
class
G4Track
;
49
class
G4ParticleDefinition
;
51
class
G4AdjointTrackingAction
:
public
G4UserTrackingAction
53
{
54
55
//--------
56
public
:
// with description
57
//--------
58
59
// Constructor & Destructor
60
G4AdjointTrackingAction
(
G4AdjointSteppingAction
* anAction);
61
virtual
~G4AdjointTrackingAction
();
62
63
// Member functions
64
virtual
void
PreUserTrackingAction
(
const
G4Track
*);
65
virtual
void
PostUserTrackingAction
(
const
G4Track
*);
66
void
RegisterAtEndOfAdjointTrack
();
67
void
ClearEndOfAdjointTrackInfoVectors
();
68
69
//inline methods
70
inline
void
SetUserForwardTrackingAction
(
G4UserTrackingAction
* anAction){
71
theUserFwdTrackingAction
= anAction;}
72
inline
G4ThreeVector
GetPositionAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_pos_vec
[i];}
73
inline
G4ThreeVector
GetDirectionAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_direction_vec
[i];}
74
inline
G4double
GetEkinAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_ekin_vec
[i];}
75
inline
G4double
GetEkinNucAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_ekin_nuc_vec
[i];}
76
inline
G4double
GetWeightAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_weight_vec
[i];}
77
inline
G4double
GetCosthAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_cos_th_vec
[i];}
78
inline
const
G4String
&
GetFwdParticleNameAtEndOfLastAdjointTrack
(){
return
last_fwd_part_name
;}
79
inline
G4int
GetFwdParticlePDGEncodingAtEndOfLastAdjointTrack
(
size_t
i=0){
return
last_fwd_part_PDGEncoding_vec
[i];}
80
inline
G4bool
GetIsAdjointTrackingMode
(){
return
is_adjoint_tracking_mode
;}
81
inline
G4int
GetLastFwdParticleIndex
(
size_t
i=0){
82
return
last_fwd_part_index_vec
[i];};
83
inline
size_t
GetNbOfAdointTracksReachingTheExternalSurface
(){
return
last_pos_vec
.size();}
84
inline
void
SetListOfPrimaryFwdParticles
( std::vector<G4ParticleDefinition*>*
85
aListOfParticles){
pListOfPrimaryFwdParticles
=aListOfParticles;}
86
87
88
private
:
89
G4AdjointSteppingAction
*
theAdjointSteppingAction
;
90
G4UserTrackingAction
*
theUserFwdTrackingAction
;
91
G4bool
is_adjoint_tracking_mode
;
92
93
94
//adjoint particle information on the external surface
95
//-----------------------------
96
G4ThreeVector
last_pos
;
97
G4ThreeVector
last_direction
;
98
G4double
last_ekin
,
last_ekin_nuc
;
//last_ekin_nuc=last_ekin/nuc, nuc is 1 if not a nucleus
99
G4double
last_cos_th
;
100
G4String
last_fwd_part_name
;
101
G4int
last_fwd_part_PDGEncoding
;
102
G4double
last_weight
;
103
G4int
last_fwd_part_index
;
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
geant4
tree
geant4-10.6-release
source
tracking
include
G4AdjointTrackingAction.hh
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:25:53
using
1.8.2 with
ECCE GitHub integration