Ignore:
Timestamp:
Dec 22, 2010, 3:52:27 PM (14 years ago)
Author:
garnier
Message:

geant4 tag 9.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/de_excitation/evaporation/src/G4Evaporation.cc

    r1340 r1347  
    2525//
    2626//
    27 // $Id: G4Evaporation.cc,v 1.25 2010/06/09 11:56:47 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-ref-09 $
     27// $Id: G4Evaporation.cc,v 1.26 2010/11/23 18:10:10 vnivanch Exp $
     28// GEANT4 tag $Name: geant4-09-04-ref-00 $
    2929//
    3030// Hadronic Process: Nuclear De-excitations
     
    142142    G4int Z = theResidualNucleus->GetZ_asInt();
    143143    G4double abun = nist->GetIsotopeAbundance(Z, A);
    144     /*
    145     G4cout << "### G4Evaporation::BreakItUp step " << ia << " Z= " << Z
    146            << " A= " << A << " Eex(MeV)= "
    147            << theResidualNucleus->GetExcitationEnergy()
    148            << " aban= " << abun << G4endl;
    149     */
     144   
     145    // G4cout << "### G4Evaporation::BreakItUp step " << ia << " Z= " << Z
     146    //     << " A= " << A << " Eex(MeV)= "
     147    //     << theResidualNucleus->GetExcitationEnergy()
     148    //     << " aban= " << abun << G4endl;
     149   
    150150    if(theResidualNucleus->GetExcitationEnergy() <= minExcitation &&
    151151       (abun > 0.0))
     
    184184    // do evaporation chain and reset total probability
    185185    if(0.0 < totprob && probabilities[0] == totprob) {
     186      //G4cout << "Start gamma evaporation" << G4endl;
    186187      theTempResult = (*theChannels)[0]->BreakUpFragment(theResidualNucleus);
    187188      if(theTempResult) {
     
    228229    // single photon evaporation, primary pointer is kept
    229230    if(0 == i) {
     231      //G4cout << "Single gamma" << G4endl;
    230232      G4Fragment* gamma = (*theChannels)[0]->EmittedFragment(theResidualNucleus);
    231233      if(gamma) { theResult->push_back(gamma); }
     
    233235      // fission, return results to the main loop if fission is succesful
    234236    } else if(1 == i) {
     237      //G4cout << "Fission" << G4endl;
    235238      theTempResult = (*theChannels)[1]->BreakUp(*theResidualNucleus);
    236239      if(theTempResult) {
     
    248251      // other channels
    249252    } else {
     253      //G4cout << "Channel # " << i << G4endl;
    250254      theTempResult = (*theChannels)[i]->BreakUp(*theResidualNucleus);
    251255      if(theTempResult) {
Note: See TracChangeset for help on using the changeset viewer.