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/include/G4PreCompoundFragmentVector.icc

    r819 r962  
    2525//
    2626//
    27 // $Id: G4PreCompoundFragmentVector.icc,v 1.3 2006/06/29 20:58:20 gunter Exp $
    28 // GEANT4 tag $Name: $
     27// $Id: G4PreCompoundFragmentVector.icc,v 1.4 2008/09/22 10:18:36 ahoward Exp $
     28// GEANT4 tag $Name: geant4-09-02-ref-02 $
    2929//
    3030// Hadronic Process: Nuclear Preequilibrium
    3131// by V. Lara
    32 
     32//
     33// Modif (03 September 2008) by J. M. Quesada for external choice of inverse
     34// cross section option
     35// JMQ (06 September 2008) Also external choice has been added for:
     36//                      - superimposed Coulomb barrier (if useSICB=true)
    3337
    3438inline G4PreCompoundFragmentVector::G4PreCompoundFragmentVector(pcfvector * avector) :
     
    6468  return;
    6569}
     70
     71//for inverse cross section choice
     72inline void G4PreCompoundFragmentVector::
     73SetOPTxs(G4int opt)
     74{   
     75  for (pcfvector::iterator i = theChannels->begin(); i != theChannels->end(); ++i)
     76    (*i)->SetOPTxs(opt);
     77  return;
     78}
     79
     80//for superimposed Coulomb Barrier for inverse  cross sections
     81inline void G4PreCompoundFragmentVector::
     82UseSICB(G4bool use)
     83{   
     84  for (pcfvector::iterator i = theChannels->begin(); i != theChannels->end(); ++i)
     85    (*i)->UseSICB(use);
     86  return;
     87}
Note: See TracChangeset for help on using the changeset viewer.