Import Geant4 0.1.0 source tree
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4DecayTable.hh,v 2.1 1998/07/13 17:17:50 urbi Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
// $Id: G4DecayTable.hh,v 1.2 1999/04/13 07:58:23 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-00-01 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -39,6 +39,8 @@ class G4DecayTable
|
||||
~G4DecayTable();
|
||||
|
||||
private:
|
||||
// hide copy constructor and assignment operator by declaring "private"
|
||||
// (Implementation does not make sense )
|
||||
G4DecayTable(const G4DecayTable &){};
|
||||
G4DecayTable & operator=(const G4DecayTable &){return *this;};
|
||||
|
||||
@@ -77,7 +79,7 @@ inline
|
||||
inline
|
||||
G4VDecayChannel* G4DecayTable::GetDecayChannel(G4int index) const
|
||||
{
|
||||
G4VDecayChannel* selectedChannel = NULL;
|
||||
G4VDecayChannel* selectedChannel = 0;
|
||||
if ( (index>=0) && (index<channels->entries()) ){
|
||||
selectedChannel = (*channels)(index);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user