Geant4-11
G4VIntraNuclearTransportModel.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// -----------------------------------------------------------------------------
28// GEANT 4 class header file
29//
30// History: first implementation, A. Feliciello, 30th June 1998
31// A.Pavliouk 26.11.98
32// In Set...() methods a pointer is deleted now before new
33// value will be asigned.
34// M.Kelsey 07.03.2011
35// Add data member and Set method to store original projectile
36// V.Ivanchenko 03.01.2012
37// Added G4VPreCompoundModel pointer to the constructor and cleanup
38// V. Uzhinsky Nov. 2012
39// Added method PropagateNuclNucl for simulation of nucleus-nucleus inter.
40// -----------------------------------------------------------------------------
41
42#ifndef G4VIntraNuclearTransportModel_h
43#define G4VIntraNuclearTransportModel_h 1
44
45// Class Description
46// Base class for intra-nuclear transport models in geant4. By merit
47// of inheriting from this class a intra-nuclear transport model can
48// be used in conjunction with any precompound, string parton model
49// or other high energy generator in the generation of final states
50// for inelastic scattering.
51// Class Description - End
52
53#include "G4V3DNucleus.hh"
57#include "G4ReactionProduct.hh"
58#include "G4HadProjectile.hh"
59#include "G4HadFinalState.hh"
60
62
64{
65public:
66
67 explicit G4VIntraNuclearTransportModel(const G4String& mName = "CascadeModel",
68 G4VPreCompoundModel* ptr = nullptr);
69
71
72 virtual
74 G4V3DNucleus* theNucleus) = 0;
75
76 virtual
78 G4V3DNucleus* theNucleus,
79 G4V3DNucleus* theProjectileNucleus); // Uzhi Nov. 2012
80
82
83 inline void Set3DNucleus(G4V3DNucleus* const value);
84
85 inline void SetPrimaryProjectile(const G4HadProjectile &aPrimary);
86
87 inline const G4String& GetModelName() const;
88
89 virtual void ModelDescription(std::ostream& outFile) const ;
90 virtual void PropagateModelDescription(std::ostream& outFile) const ;
91
94 G4bool operator==(const G4VIntraNuclearTransportModel& right) const = delete;
95 G4bool operator!=(const G4VIntraNuclearTransportModel& right) const = delete;
96
97protected:
98
99 inline G4V3DNucleus* Get3DNucleus() const;
100
101 inline G4VPreCompoundModel* GetDeExcitation() const;
102
103 inline const G4HadProjectile* GetPrimaryProjectile() const;
104
106
108
110
112};
113
115{
117}
118
120{
121 return the3DNucleus;
122}
123
125{
126 delete the3DNucleus; the3DNucleus = value;
127}
128
130{
131 return theDeExcitation;
132}
133
134inline void
136{
137 // previous pre-compound model will be deleted at the end of job
138 theDeExcitation = value;
139}
140
141inline const G4HadProjectile*
143{
145}
146
147inline void
149{
150 // NOTE: Previous pointer is NOT deleted: passed by reference, no ownership
151 thePrimaryProjectile = &aPrimary;
152}
153
154#endif
155
156
std::vector< G4ReactionProduct * > G4ReactionProductVector
bool G4bool
Definition: G4Types.hh:86
virtual G4ReactionProductVector * PropagateNuclNucl(G4KineticTrackVector *theSecondaries, G4V3DNucleus *theNucleus, G4V3DNucleus *theProjectileNucleus)
virtual void ModelDescription(std::ostream &outFile) const
G4VIntraNuclearTransportModel(const G4String &mName="CascadeModel", G4VPreCompoundModel *ptr=nullptr)
void SetPrimaryProjectile(const G4HadProjectile &aPrimary)
G4VIntraNuclearTransportModel(const G4VIntraNuclearTransportModel &right)=delete
G4VPreCompoundModel * GetDeExcitation() const
const G4HadProjectile * GetPrimaryProjectile() const
G4bool operator!=(const G4VIntraNuclearTransportModel &right) const =delete
void SetDeExcitation(G4VPreCompoundModel *ptr)
virtual void PropagateModelDescription(std::ostream &outFile) const
virtual G4ReactionProductVector * Propagate(G4KineticTrackVector *theSecondaries, G4V3DNucleus *theNucleus)=0
G4bool operator==(const G4VIntraNuclearTransportModel &right) const =delete
const G4VIntraNuclearTransportModel & operator=(const G4VIntraNuclearTransportModel &right)=delete
void Set3DNucleus(G4V3DNucleus *const value)