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/G4AlphaEvaporationChannel.cc

    r1340 r1347  
    2525//
    2626//
    27 // $Id: G4AlphaEvaporationChannel.cc,v 1.4 2006/06/29 20:10:17 gunter Exp $
    28 // GEANT4 tag $Name: geant4-09-03-ref-09 $
     27// $Id: G4AlphaEvaporationChannel.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 "G4AlphaEvaporationChannel.hh"
    3536
     37G4AlphaEvaporationChannel::G4AlphaEvaporationChannel()
     38: G4EvaporationChannel(4,2,"alpha",&theEvaporationProbability,&theCoulombBarrier)
     39{}
    3640
    37 const G4AlphaEvaporationChannel & G4AlphaEvaporationChannel::operator=(const G4AlphaEvaporationChannel & )
    38 {
    39   throw G4HadronicException(__FILE__, __LINE__, "G4AlphaEvaporationChannel::operator= meant to not be accessable");
    40   return *this;
    41 }
     41G4AlphaEvaporationChannel::~G4AlphaEvaporationChannel()
     42{}
    4243
    43 G4AlphaEvaporationChannel::G4AlphaEvaporationChannel(const G4AlphaEvaporationChannel & ) : G4EvaporationChannel()
    44 {
    45   throw G4HadronicException(__FILE__, __LINE__, "G4AlphaEvaporationChannel::CopyConstructor meant to not be accessable");
    46 }
    47 
    48 G4bool G4AlphaEvaporationChannel::operator==(const G4AlphaEvaporationChannel &right ) const
    49 {
    50   return (this == (G4AlphaEvaporationChannel *) &right);
    51   //  return false;
    52 }
    53 
    54 G4bool G4AlphaEvaporationChannel::operator!=(const G4AlphaEvaporationChannel &right ) const
    55 {
    56   return (this != (G4AlphaEvaporationChannel *) &right);
    57   //  return true;
    58 }
    59 
Note: See TracChangeset for help on using the changeset viewer.