Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4LENDInelastic.cc
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 #include "G4LENDInelastic.hh"
27 #include "G4SystemOfUnits.hh"
28 #include "G4Nucleus.hh"
29 #include "G4ParticleTable.hh"
30 
32 {
33 
34  G4ThreeVector proj_p = aTrack.Get4Momentum().vect();
35 
36  G4double temp = aTrack.GetMaterial()->GetTemperature();
37 
38  //G4int iZ = int ( aTarg.GetZ() );
39  //G4int iA = int ( aTarg.GetN() );
40  //migrate to integer A and Z (GetN_asInt returns number of neutrons in the nucleus since this)
41  G4int iZ = aTarg.GetZ_asInt();
42  G4int iA = aTarg.GetA_asInt();
43  //G4int iM = aTarg.GetM_asInt();
44  G4int iM = 0;
45  if ( aTarg.GetIsotope() != NULL ) {
46  iM = aTarg.GetIsotope()->Getm();
47  }
48  //G4cout << "target: Z = " << iZ << " N = " << iA << G4endl;
49 
50  G4double ke = aTrack.GetKineticEnergy();
51  //G4cout << "projectile: KE = " << ke/MeV << " [MeV]" << G4endl;
52 
53  G4HadFinalState* theResult = &theParticleChange;
54  theResult->Clear();
55 
56  G4GIDI_target* aTarget = usedTarget_map.find( lend_manager->GetNucleusEncoding( iZ , iA , iM ) )->second->GetTarget();
57  std::vector<G4GIDI_Product>* products = aTarget->getOthersFinalState( ke*MeV, temp, NULL, NULL );
58  if ( products != NULL )
59  {
60 
61  G4ThreeVector psum(0);
62 
63  int totN = 0;
64  for ( G4int j = 0; j < int( products->size() ); j++ )
65  {
66 
67  G4int jZ = (*products)[j].Z;
68  G4int jA = (*products)[j].A;
69 
70  //G4cout << "ZA = " << 1000 * (*products)[j].Z + (*products)[j].A << " EK = "
71  // << (*products)[j].kineticEnergy
72  // << " px " << (*products)[j].px
73  // << " py " << (*products)[j].py
74  // << " pz " << (*products)[j].pz
75  // << G4endl;
76 
78 
79  if ( jA == 1 && jZ == 1 )
80  {
81  theSec->SetDefinition( G4Proton::Proton() );
82  totN += 1;
83  }
84  else if ( jA == 1 && jZ == 0 )
85  {
86  theSec->SetDefinition( G4Neutron::Neutron() );
87  totN += 1;
88  }
89  else if ( jZ > 0 )
90  {
91  if ( jA != 0 )
92  {
93  theSec->SetDefinition( G4ParticleTable::GetParticleTable()->FindIon( jZ , jA , 0 , 0 ) );
94  totN += jA;
95  }
96  else
97  {
98  theSec->SetDefinition( G4ParticleTable::GetParticleTable()->FindIon( jZ , iA+1-totN , 0 , 0 ) );
99  }
100  }
101  else
102  {
103  theSec->SetDefinition( G4Gamma::Gamma() );
104  }
105 
106  G4ThreeVector p( (*products)[j].px*MeV , (*products)[j].py*MeV , (*products)[j].pz*MeV );
107  psum += p;
108  if ( p.mag() == 0 ) p = proj_p - psum;
109 
110  theSec->SetMomentum( p );
111 
112  theResult->AddSecondary( theSec );
113  }
114  }
115  delete products;
116 
117  theResult->SetStatusChange( stopAndKill );
118 
119  return theResult;
120 
121 }
G4int GetA_asInt() const
Definition: G4Nucleus.hh:109
void SetMomentum(const G4ThreeVector &momentum)
typedef int(XMLCALL *XML_NotStandaloneHandler)(void *userData)
const char * p
Definition: xmltok.h:285
std::vector< G4GIDI_Product > * getOthersFinalState(double e_in, double temperature, double(*rng)(void *), void *rngState)
int G4int
Definition: G4Types.hh:78
void SetStatusChange(G4HadFinalStateStatus aS)
G4int GetNucleusEncoding(G4int iZ, G4int iA, G4int iM)
Hep3Vector vect() const
G4int Getm() const
Definition: G4Isotope.hh:100
std::map< G4int, G4LENDUsedTarget * > usedTarget_map
Definition: G4LENDModel.hh:79
G4double GetKineticEnergy() const
static G4Proton * Proton()
Definition: G4Proton.cc:93
static G4Neutron * Neutron()
Definition: G4Neutron.cc:104
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
const G4LorentzVector & Get4Momentum() const
static G4ParticleTable * GetParticleTable()
const G4Isotope * GetIsotope()
Definition: G4Nucleus.hh:119
G4int GetZ_asInt() const
Definition: G4Nucleus.hh:115
G4double GetTemperature() const
Definition: G4Material.hh:180
const G4Material * GetMaterial() const
G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &aTargetNucleus)
double G4double
Definition: G4Types.hh:76
void SetDefinition(const G4ParticleDefinition *aParticleDefinition)
G4LENDManager * lend_manager
Definition: G4LENDModel.hh:78
double mag() const
void AddSecondary(G4DynamicParticle *aP)