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