Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 27 //....oooOO0OOooo........oooOO0OOooo........oo 28 29 #include "RadioactiveDecayPhysics.hh" 30 31 #include "G4DeexPrecoParameters.hh" 32 #include "G4EmParameters.hh" 33 #include "G4GenericIon.hh" 34 #include "G4LossTableManager.hh" 35 #include "G4NuclearLevelData.hh" 36 #include "G4NuclideTable.hh" 37 #include "G4PhysicsListHelper.hh" 38 #include "G4Radioactivation.hh" 39 #include "G4SystemOfUnits.hh" 40 #include "G4Triton.hh" 41 #include "G4UAtomicDeexcitation.hh" 42 #include "G4VAtomDeexcitation.hh" 43 44 //....oooOO0OOooo........oooOO0OOooo........oo 45 46 RadioactiveDecayPhysics::RadioactiveDecayPhysi 47 { 48 // hadronic physics extra configuration 49 // 50 G4DeexPrecoParameters* deex = G4NuclearLevel 51 deex->SetStoreICLevelData(true); 52 deex->SetMaxLifeTime(G4NuclideTable::GetInst 53 deex->SetIsomerProduction(true); 54 deex->SetCorrelatedGamma(false); 55 } 56 57 //....oooOO0OOooo........oooOO0OOooo........oo 58 59 void RadioactiveDecayPhysics::ConstructParticl 60 { 61 G4GenericIon::GenericIon(); 62 } 63 64 //....oooOO0OOooo........oooOO0OOooo........oo 65 66 void RadioactiveDecayPhysics::ConstructProcess 67 { 68 G4Radioactivation* radioactiveDecay = new G4 69 70 G4bool ARMflag = false; 71 radioactiveDecay->SetARM(ARMflag); // Atomi 72 73 // EM physics extra configuration 74 // this physics constructor should be define 75 G4EmParameters::Instance()->SetFluo(ARMflag) 76 G4EmParameters::Instance()->SetAugerCascade( 77 G4EmParameters::Instance()->SetDeexcitationI 78 79 G4LossTableManager* man = G4LossTableManager 80 G4VAtomDeexcitation* ad = man->AtomDeexcitat 81 82 // EM physics constructors are not used 83 if (ad == nullptr) { 84 ad = new G4UAtomicDeexcitation(); 85 man->SetAtomDeexcitation(ad); 86 man->ResetParameters(); 87 } 88 89 G4PhysicsListHelper::GetPhysicsListHelper()- 90 91 92 G4PhysicsListHelper::GetPhysicsListHelper()- 93 94 } 95 96 //....oooOO0OOooo........oooOO0OOooo........oo 97