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

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