Import Geant4 8.3.0 source tree
This commit is contained in:
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VIntraNuclearTransportModel.cc,v 1.4 2006/06/29 20:46:05 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4VIntraNuclearTransportModel.cc,v 1.5 2007/01/11 05:28:56 dennis Exp $
|
||||
// GEANT4 tag $Name: geant4-08-03 $
|
||||
//
|
||||
// $Id: G4VIntraNuclearTransportModel.cc,v 1.0 1998/06/30
|
||||
// -----------------------------------------------------------------------------
|
||||
@@ -39,22 +39,22 @@
|
||||
#include "G4VIntraNuclearTransportModel.hh"
|
||||
|
||||
|
||||
|
||||
// Class G4VIntraNuclearTransportModel
|
||||
|
||||
|
||||
G4VIntraNuclearTransportModel::G4VIntraNuclearTransportModel(const G4String& modelName) :
|
||||
G4HadronicInteraction(modelName),
|
||||
theTransportModelName(modelName), the3DNucleus(NULL), theDeExcitation(NULL)
|
||||
{}
|
||||
|
||||
G4VIntraNuclearTransportModel::G4VIntraNuclearTransportModel() :
|
||||
the3DNucleus(NULL),
|
||||
theDeExcitation(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
G4VIntraNuclearTransportModel::
|
||||
G4VIntraNuclearTransportModel(const G4VIntraNuclearTransportModel& right) : G4HadronicInteraction()
|
||||
G4VIntraNuclearTransportModel(const G4VIntraNuclearTransportModel& right) :
|
||||
G4HadronicInteraction(right.GetModelName() )
|
||||
{
|
||||
the3DNucleus = right.Get3DNucleus();
|
||||
theDeExcitation = right.GetDeExcitation();
|
||||
theTransportModelName = right.GetModelName();
|
||||
the3DNucleus = right.Get3DNucleus();
|
||||
theDeExcitation = right.GetDeExcitation();
|
||||
}
|
||||
|
||||
|
||||
@@ -71,10 +71,11 @@ G4VIntraNuclearTransportModel::
|
||||
operator=(const G4VIntraNuclearTransportModel& right)
|
||||
{
|
||||
if (this != &right)
|
||||
{
|
||||
{
|
||||
theTransportModelName = right.GetModelName();
|
||||
the3DNucleus = right.Get3DNucleus();
|
||||
theDeExcitation = right.GetDeExcitation();
|
||||
}
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
||||
@@ -24,17 +24,18 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VPreCompoundModel.cc,v 1.5 2006/06/29 20:46:11 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4VPreCompoundModel.cc,v 1.6 2007/01/11 05:29:10 dennis Exp $
|
||||
// GEANT4 tag $Name: geant4-08-03 $
|
||||
//
|
||||
|
||||
#include "G4VPreCompoundModel.hh"
|
||||
#include "G4HadronicException.hh"
|
||||
|
||||
G4VPreCompoundModel::G4VPreCompoundModel(G4ExcitationHandler *const value):
|
||||
G4VPreCompoundModel::G4VPreCompoundModel(G4ExcitationHandler* const value,
|
||||
const G4String& modelName):
|
||||
G4HadronicInteraction(modelName),
|
||||
theExcitationHandler(value)
|
||||
{
|
||||
}
|
||||
{}
|
||||
|
||||
|
||||
const G4VPreCompoundModel &
|
||||
|
||||
Reference in New Issue
Block a user