Ignore:
Timestamp:
Dec 22, 2010, 3:52:27 PM (13 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/G4NeutronEvaporationChannel.cc

    r1340 r1347  
    2525//
    2626//
    27 // $Id: G4NeutronEvaporationChannel.cc,v 1.4 2006/06/29 20:10:37 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-ref-09 $
     27// $Id: G4NeutronEvaporationChannel.cc,v 1.5 2010/11/17 12:14:59 vnivanch Exp $
     28// GEANT4 tag $Name: geant4-09-04-ref-00 $
    2929//
    3030// Hadronic Process: Nuclear De-excitations
    3131// by V. Lara (Nov. 1999)
    3232//
     33// 17-11-2010 V.Ivanchenko moved constructor and destructor to source and cleanup
    3334
    3435#include "G4NeutronEvaporationChannel.hh"
    3536
     37G4NeutronEvaporationChannel::G4NeutronEvaporationChannel()
     38: G4EvaporationChannel(1,0,"neutron",&theEvaporationProbability,&theCoulombBarrier)
     39{}
    3640
    37 const G4NeutronEvaporationChannel & G4NeutronEvaporationChannel::operator=(const G4NeutronEvaporationChannel & )
    38 {
    39     throw G4HadronicException(__FILE__, __LINE__, "G4NeutronEvaporationChannel::operator= meant to not be accessable");
    40     return *this;
    41 }
    42 
    43 G4NeutronEvaporationChannel::G4NeutronEvaporationChannel(const G4NeutronEvaporationChannel & ) : G4EvaporationChannel()
    44 {
    45     throw G4HadronicException(__FILE__, __LINE__, "G4NeutronEvaporationChannel::CopyConstructor meant to not be accessable");
    46 }
    47 
    48 G4bool G4NeutronEvaporationChannel::operator==(const G4NeutronEvaporationChannel & right) const
    49 {
    50     return (this == (G4NeutronEvaporationChannel *) &right);
    51     //  return false;
    52 }
    53 
    54 G4bool G4NeutronEvaporationChannel::operator!=(const G4NeutronEvaporationChannel & right) const
    55 {
    56     return (this != (G4NeutronEvaporationChannel *) &right);
    57     //  return true;
    58 }
    59 
     41G4NeutronEvaporationChannel::~G4NeutronEvaporationChannel()
     42{}
Note: See TracChangeset for help on using the changeset viewer.