G4NeutronHPThermalBoost.hh

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // 081024 G4NucleiPropertiesTable:: to G4NucleiProperties::
00027 //
00028 #ifndef G4NeutronHPThermalBoost_h
00029 #define G4NeutronHPThermalBoost_h
00030 
00031 #include "G4HadProjectile.hh"
00032 #include "G4Element.hh"
00033 #include "G4ReactionProduct.hh"
00034 #include "G4Nucleus.hh"
00035 #include "G4NucleiProperties.hh"
00036 #include "G4Electron.hh"
00037 #include "G4Neutron.hh"
00038 
00039 class G4NeutronHPThermalBoost
00040 {
00041 public: 
00042   G4double GetThermalEnergy(const G4HadProjectile & aP, 
00043                             const G4Element * anE, 
00044                             G4double aT)
00045   {
00046     G4double theA = anE->GetN();
00047     G4double theZ = anE->GetZ();
00048     return GetThermalEnergy(aP, theA ,theZ, aT);
00049   }
00050                             
00051   G4double GetThermalEnergy(const G4HadProjectile & aP, 
00052                             G4double theA, G4double theZ,
00053                             G4double aT)
00054   {
00055     // prepare neutron
00056     G4double eKinetic = aP.GetKineticEnergy();
00057     G4ReactionProduct theNeutron( const_cast<G4ParticleDefinition *>(aP.GetDefinition()) );
00058     theNeutron.SetMomentum( aP.Get4Momentum().vect() );
00059     theNeutron.SetKineticEnergy( eKinetic );
00060     G4ThreeVector neuVelo = (1./aP.GetDefinition()->GetPDGMass())*theNeutron.GetMomentum();
00061 
00062     // prepare properly biased thermal nucleus
00063     G4Nucleus aNuc;
00064     G4double eps = 0.0001;
00065     G4double eleMass; 
00066     eleMass = ( G4NucleiProperties::GetNuclearMass( static_cast<G4int>(theA+eps) , static_cast<G4int>(theZ+eps) ) ) / G4Neutron::Neutron()->GetPDGMass();
00067   
00068     G4ReactionProduct aThermalNuc = aNuc.GetBiasedThermalNucleus(eleMass, neuVelo, aT);
00069     
00070     // boost to rest system and return
00071     G4ReactionProduct boosted;
00072     boosted.Lorentz(theNeutron, aThermalNuc);
00073     return boosted.GetKineticEnergy();
00074   }
00075 };
00076 #endif

Generated on Mon May 27 17:49:04 2013 for Geant4 by  doxygen 1.4.7