Import Geant4 10.6.0 source tree
This commit is contained in:
@@ -13,6 +13,12 @@ introduced in the code and keeptrack of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
25 June 2019 Dennis Wright (phys-ctor-decay-V10-05-00)
|
||||
-------------------------------------------------------
|
||||
- G4RadioactiveDecayPhysics: replace G4RadioactiveDecay with
|
||||
G4RadioactiveDecayBase. This removes the biasing functionality which
|
||||
is generally not used in the physics lists.
|
||||
|
||||
07-July-2018 Vladimir Ivanchenko (phys-ctor-decay-V10-04-00)
|
||||
- G4RadioactiveDecayPhysics - fixed bug reported by M.Kelsey, which
|
||||
resolves initialisation ordering of messages to EM physics
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
class G4RadioactiveDecay;
|
||||
class G4RadioactiveDecayBase;
|
||||
|
||||
class G4RadioactiveDecayPhysics : public G4VPhysicsConstructor
|
||||
{
|
||||
@@ -52,7 +52,6 @@ public:
|
||||
virtual void ConstructProcess();
|
||||
|
||||
private:
|
||||
//G4RadioactiveDecay* theRadioactiveDecay;
|
||||
};
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "G4RadioactiveDecayPhysics.hh"
|
||||
|
||||
#include "G4RadioactiveDecay.hh"
|
||||
#include "G4RadioactiveDecayBase.hh"
|
||||
#include "G4GenericIon.hh"
|
||||
#include "globals.hh"
|
||||
#include "G4PhysicsListHelper.hh"
|
||||
@@ -87,7 +87,7 @@ void G4RadioactiveDecayPhysics::ConstructProcess()
|
||||
}
|
||||
|
||||
G4PhysicsListHelper::GetPhysicsListHelper()->
|
||||
RegisterProcess(new G4RadioactiveDecay(), G4GenericIon::GenericIon());
|
||||
RegisterProcess(new G4RadioactiveDecayBase(), G4GenericIon::GenericIon());
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
Reference in New Issue
Block a user