Ignore:
Timestamp:
Jun 18, 2010, 11:42:07 AM (14 years ago)
Author:
garnier
Message:

update geant4-09-04-beta-cand-01 interfaces-V09-03-09 vis-V09-03-08

File:
1 edited

Legend:

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

    r1228 r1315  
    2525//
    2626//
    27 // $Id: G4PreCompoundAlpha.cc,v 1.5 2009/02/13 18:57:32 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03 $
     27// $Id: G4PreCompoundAlpha.cc,v 1.6 2010/04/09 14:06:17 vnivanch Exp $
     28// GEANT4 tag $Name: geant4-09-04-beta-cand-01 $
    2929//
    3030// -------------------------------------------------------------------
     
    3939// Modified: 
    4040// 21.08.2008 J. M. Quesada add choice of options 
    41 // 10.02.2009 J. M. Quesada set default opt1 
    4241//
    4342
     
    243242  ecut = (ecut-a) / (p+p);
    244243  ecut2 = ecut;
    245   if (cut < 0.) ecut2 = ecut - 2.;
     244//JMQ 290310 for avoiding unphysical increase below minimum (at ecut)
     245//ecut<0 means that there is no cut with energy axis, i.e. xs is set to 0 bellow minimum
     246//  if (cut < 0.) ecut2 = ecut - 2.;
     247  if (cut < 0.) ecut2 = ecut;
    246248  elab = K * FragmentA / ResidualA;
    247249  sig = 0.;
Note: See TracChangeset for help on using the changeset viewer.