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/management/src/G4VEvaporationChannel.cc

    r1340 r1347  
    2424// ********************************************************************
    2525//
    26 // $Id: G4VEvaporationChannel.cc,v 1.6 2010/04/25 18:43:08 vnivanch Exp $
    27 // GEANT4 tag $Name: geant4-09-03-ref-09 $
     26// $Id: G4VEvaporationChannel.cc,v 1.7 2010/10/29 17:35:04 vnivanch Exp $
     27// GEANT4 tag $Name: geant4-09-04-ref-00 $
    2828//
    2929// Hadronic Process: Nuclear De-excitations
     
    3434//                          new virtual methods EmittedFragment(s) to allow more optimal
    3535//                          work with G4Fragment objects; removed unnecesary exceptions
     36// 28.10.2010 V.Ivanchenko defined members in constructor and cleaned up
    3637
    3738#include "G4VEvaporationChannel.hh"
    38 #include "G4HadronicException.hh"
    3939
    4040G4VEvaporationChannel::G4VEvaporationChannel(const G4String & aName)
    41   : Name(aName)
     41  :OPTxs(3),useSICB(false),Name(aName)
    4242{}
    4343
    4444G4VEvaporationChannel::~G4VEvaporationChannel()
    4545{}
    46 
    47 //G4VEvaporationChannel::G4VEvaporationChannel(const G4VEvaporationChannel &)
    48 //{
    49 // throw G4HadronicException(__FILE__, __LINE__, "G4VEvaporationChannel::copy_constructor meant to not be accessable");
    50 //}
    51 //const G4VEvaporationChannel & G4VEvaporationChannel::operator=(const G4VEvaporationChannel &)
    52 //{
    53 //  throw G4HadronicException(__FILE__, __LINE__, "G4VEvaporationChannel::operator= meant to not be accessable");
    54 //  return *this;
    55 //}
    56 
    57 G4bool G4VEvaporationChannel::operator==(const G4VEvaporationChannel &right) const
    58 {
    59   return (this == (G4VEvaporationChannel *) &right);
    60 }
    61 
    62 G4bool G4VEvaporationChannel::operator!=(const G4VEvaporationChannel &right) const
    63 {
    64   return (this != (G4VEvaporationChannel *) &right);
    65 }
    6646
    6747G4Fragment* G4VEvaporationChannel::EmittedFragment(G4Fragment*)
Note: See TracChangeset for help on using the changeset viewer.