Ignore:
Timestamp:
Apr 6, 2009, 12:30:29 PM (15 years ago)
Author:
garnier
Message:

update processes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/pre_equilibrium/exciton_model/src/G4VPreCompoundFragment.cc

    r819 r962  
    2424// ********************************************************************
    2525//
     26// $Id: G4VPreCompoundFragment.cc,v 1.12 2009/02/10 16:01:37 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2628//
    27 // $Id: G4VPreCompoundFragment.cc,v 1.4 2007/07/23 09:56:40 ahoward Exp $
    28 // GEANT4 tag $Name:  $
     29// J. M. Quesada (August 2008). 
     30// Based  on previous work by V. Lara
    2931//
    30 // by V. Lara
    3132 
    3233#include "G4VPreCompoundFragment.hh"
     
    142143  if ((theRestNucleusA < theRestNucleusZ) ||
    143144      (theRestNucleusA < theA) ||
    144       (theRestNucleusZ < theZ) ||
    145       (aFragment.GetNumberOfCharged() < theZ)) // AH last argument from JMQ
     145      (theRestNucleusZ < theZ))
    146146    {
    147147      // In order to be sure that emission probability will be 0.
     
    155155    GetCoulombBarrier(static_cast<G4int>(theRestNucleusA),static_cast<G4int>(theRestNucleusZ),
    156156                      aFragment.GetExcitationEnergy());
    157  
     157
     158
    158159  // Compute Binding Energies for fragments
    159160  // (needed to separate a fragment from the nucleus)
     
    164165 
    165166  // Compute Maximal Kinetic Energy which can be carried by fragments after separation
     167  // This is the true (assimptotic) maximal kinetic energy
    166168  G4double m = aFragment.GetMomentum().m();
    167169  G4double rm = GetRestNuclearMass();
    168170  G4double em = GetNuclearMass();
    169171  theMaximalKineticEnergy = ((m - rm)*(m + rm) + em*em)/(2.0*m) - em;
    170   // - theCoulombBarrier;
     172 
    171173 
    172174  return;
Note: See TracChangeset for help on using the changeset viewer.