Import Geant4 11.0.0 source tree
This commit is contained in:
committed by
Ben Morgan
parent
6399a014b6
commit
80e2389dd8
@@ -13,6 +13,14 @@ introduced in the code and keeptrack of all tags.
|
||||
* Reverse chronological order (last date on top), please *
|
||||
----------------------------------------------------------
|
||||
|
||||
06-October-2020 Vladimir Ivanchenko (phys-ctor-decay-V10-07-03)
|
||||
- G4RadioactiveDecayPhysics - Use SetAuger(..) method instead of
|
||||
the obsolete SetAugerCascade(..)
|
||||
|
||||
25-August-2021 Dennis Wright (part of physics-lists-V10-07-02)
|
||||
- G4RadioactiveDecayPhysics.cc: replace G4RadioactiveDecayBase with G4RadioactiveDecay
|
||||
see top level History file
|
||||
|
||||
16-April-2021 Ben Morgan (phys-ctor-decay-V10-07-01)
|
||||
- Migrate build to modular CMake API
|
||||
|
||||
|
||||
@@ -1,14 +0,0 @@
|
||||
-------------------------------------------------------------------
|
||||
|
||||
|
||||
G4DecayPhysics
|
||||
--------------
|
||||
|
||||
G4RadioactiveDecayPhysics
|
||||
-------------------------
|
||||
|
||||
G4SpinDecayPhysics
|
||||
------------------
|
||||
|
||||
G4UnknownDecayPhysics
|
||||
---------------------
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
#include "G4RadioactiveDecayPhysics.hh"
|
||||
|
||||
#include "G4RadioactiveDecayBase.hh"
|
||||
#include "G4RadioactiveDecay.hh"
|
||||
#include "G4GenericIon.hh"
|
||||
#include "globals.hh"
|
||||
#include "G4PhysicsListHelper.hh"
|
||||
@@ -80,7 +80,7 @@ void G4RadioactiveDecayPhysics::ConstructProcess()
|
||||
{
|
||||
// EM physics extra configuration
|
||||
// this physics constructor should be defined after EM constructor
|
||||
G4EmParameters::Instance()->SetAugerCascade(true);
|
||||
G4EmParameters::Instance()->SetAuger(true);
|
||||
G4EmParameters::Instance()->SetDeexcitationIgnoreCut(true);
|
||||
|
||||
G4LossTableManager* man = G4LossTableManager::Instance();
|
||||
@@ -94,7 +94,7 @@ void G4RadioactiveDecayPhysics::ConstructProcess()
|
||||
}
|
||||
|
||||
G4PhysicsListHelper::GetPhysicsListHelper()->
|
||||
RegisterProcess(new G4RadioactiveDecayBase(), G4GenericIon::GenericIon());
|
||||
RegisterProcess(new G4RadioactiveDecay(), G4GenericIon::GenericIon());
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
Reference in New Issue
Block a user