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

geant4 tag 9.4

Location:
trunk/source/processes/hadronic/models/de_excitation/multifragmentation/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/de_excitation/multifragmentation/src/G4StatMF.cc

    r1340 r1347  
    2525//
    2626//
    27 // $Id: G4StatMF.cc,v 1.6 2008/07/25 11:20:47 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-ref-09 $
     27// $Id: G4StatMF.cc,v 1.7 2010/10/29 17:35:04 vnivanch Exp $
     28// GEANT4 tag $Name: geant4-09-04-ref-00 $
    2929//
    3030// Hadronic Process: Nuclear De-excitations
     
    8181
    8282  if (theFragment.GetExcitationEnergy() <= 0.0) {
    83     G4FragmentVector * theResult = new G4FragmentVector;
    84     theResult->push_back(new G4Fragment(theFragment));
     83    //G4FragmentVector * theResult = new G4FragmentVector;
     84    //theResult->push_back(new G4Fragment(theFragment));
    8585    return 0;
    8686  }
  • trunk/source/processes/hadronic/models/de_excitation/multifragmentation/src/G4StatMFMacroTemperature.cc

    r1340 r1347  
    2525//
    2626//
    27 // $Id: G4StatMFMacroTemperature.cc,v 1.8 2010/04/16 17:04:08 vnivanch Exp $
    28 // GEANT4 tag $Name: geant4-09-03-ref-09 $
     27// $Id: G4StatMFMacroTemperature.cc,v 1.9 2010/10/29 17:35:04 vnivanch Exp $
     28// GEANT4 tag $Name: geant4-09-04-ref-00 $
    2929//
    3030// Hadronic Process: Nuclear De-excitations
     
    3939//          to protect code from rare unwanted exception; moved constructor
    4040//          and destructor to source 
     41// 28.10.10 V.Ivanchenko defined members in constructor and cleaned up
    4142
    4243#include "G4StatMFMacroTemperature.hh"
     
    5455  _ChemPotentialMu(0.0),
    5556  _ChemPotentialNu(0.0),
     57  _MeanEntropy(0.0),
    5658  _theClusters(ClusterVector)
    57 {}
    58 
    59 G4StatMFMacroTemperature::G4StatMFMacroTemperature()
    6059{}
    6160       
    6261G4StatMFMacroTemperature::~G4StatMFMacroTemperature()
    6362{}
    64 
    65 // operators definitions
    66 G4StatMFMacroTemperature &
    67 G4StatMFMacroTemperature::operator=(const G4StatMFMacroTemperature & )
    68 {
    69     throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTemperature::operator= meant to not be accessable");
    70     return *this;
    71 }
    72 
    73 G4bool G4StatMFMacroTemperature::operator==(const G4StatMFMacroTemperature & ) const
    74 {
    75     throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTemperature::operator== meant to not be accessable");
    76     return false;
    77 }
    78 
    79 
    80 G4bool G4StatMFMacroTemperature::operator!=(const G4StatMFMacroTemperature & ) const
    81 {
    82     throw G4HadronicException(__FILE__, __LINE__, "G4StatMFMacroTemperature::operator!= meant to not be accessable");
    83     return true;
    84 }
    85 
    86 
    8763
    8864
Note: See TracChangeset for help on using the changeset viewer.