Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // 26 // 27 // ------------------------------------------- 27 // -------------------------------------------------------------- 28 // GEANT 4 - ULTRA experiment 28 // GEANT 4 - ULTRA experiment example 29 // ------------------------------------------- 29 // -------------------------------------------------------------- 30 // 30 // 31 // Code developed by: 31 // Code developed by: 32 // B. Tome, M.C. Espirito-Santo, A. Trindade, 32 // B. Tome, M.C. Espirito-Santo, A. Trindade, P. Rodrigues 33 // 33 // 34 // **************************************** 34 // **************************************************** 35 // * UltraPhysicsList.cc 35 // * UltraPhysicsList.cc 36 // **************************************** 36 // **************************************************** 37 // 37 // 38 // Ultra Physics List class; Standard and L 38 // Ultra Physics List class; Standard and Low Energy EM processes are defined for 39 // the relevant particles. Optical processe 39 // the relevant particles. Optical processes are declared. 40 // 40 // 41 #include "G4ios.hh" 41 #include "G4ios.hh" 42 //#include "iomanip.h" 42 //#include "iomanip.h" 43 #include "globals.hh" 43 #include "globals.hh" 44 44 45 #include "UltraPhysicsList.hh" 45 #include "UltraPhysicsList.hh" 46 46 47 #include "G4ParticleDefinition.hh" 47 #include "G4ParticleDefinition.hh" 48 #include "G4ParticleTypes.hh" 48 #include "G4ParticleTypes.hh" 49 #include "G4ParticleWithCuts.hh" 49 #include "G4ParticleWithCuts.hh" 50 #include "G4ParticleTable.hh" 50 #include "G4ParticleTable.hh" 51 #include "G4Material.hh" 51 #include "G4Material.hh" 52 #include "G4MaterialTable.hh" 52 #include "G4MaterialTable.hh" 53 #include "G4ProcessManager.hh" 53 #include "G4ProcessManager.hh" 54 #include "G4ProcessVector.hh" 54 #include "G4ProcessVector.hh" 55 55 56 #include "G4EmStandardPhysics.hh" 56 #include "G4EmStandardPhysics.hh" 57 #include "G4EmLivermorePhysics.hh" 57 #include "G4EmLivermorePhysics.hh" 58 #include "G4EmPenelopePhysics.hh" 58 #include "G4EmPenelopePhysics.hh" 59 #include "G4EmLowEPPhysics.hh" 59 #include "G4EmLowEPPhysics.hh" 60 #include "G4DecayPhysics.hh" 60 #include "G4DecayPhysics.hh" 61 #include "G4IonPhysics.hh" 61 #include "G4IonPhysics.hh" 62 #include "G4EmExtraPhysics.hh" 62 #include "G4EmExtraPhysics.hh" 63 #include "G4StoppingPhysics.hh" 63 #include "G4StoppingPhysics.hh" 64 #include "G4OpticalPhysics.hh" 64 #include "G4OpticalPhysics.hh" 65 65 66 #include "G4UnitsTable.hh" 66 #include "G4UnitsTable.hh" 67 #include "G4SystemOfUnits.hh" 67 #include "G4SystemOfUnits.hh" 68 #include "G4LossTableManager.hh" 68 #include "G4LossTableManager.hh" 69 69 70 UltraPhysicsList::UltraPhysicsList() : G4VMod 70 UltraPhysicsList::UltraPhysicsList() : G4VModularPhysicsList(), 71 fEmPhysicsList(0), 71 fEmPhysicsList(0), 72 fOpPhysicsList(0), 72 fOpPhysicsList(0), 73 fDecayPhysicsList(0), 73 fDecayPhysicsList(0), 74 fVerboseLebel(1), 74 fVerboseLebel(1), 75 fMaxNumPhotonStep(20) 75 fMaxNumPhotonStep(20) 76 { 76 { 77 G4LossTableManager::Instance(); 77 G4LossTableManager::Instance(); 78 SetDefaultCutValue(1*mm); 78 SetDefaultCutValue(1*mm); 79 79 80 // fMessenger = new UltraPhysicsListMessenge 80 // fMessenger = new UltraPhysicsListMessenger(this); 81 // fStepMaxProcess = new StepMax(); 81 // fStepMaxProcess = new StepMax(); 82 82 83 // Initilise flags 83 // Initilise flags 84 84 85 SetVerboseLevel(1); 85 SetVerboseLevel(1); 86 86 87 87 88 // EM physics 88 // EM physics 89 fEmName = G4String("emstandard"); 89 fEmName = G4String("emstandard"); 90 fEmPhysicsList = new G4EmStandardPhysics(); 90 fEmPhysicsList = new G4EmStandardPhysics(); 91 fOpPhysicsList = new G4OpticalPhysics(); 91 fOpPhysicsList = new G4OpticalPhysics(); 92 92 93 // Decay Physics is always defined 93 // Decay Physics is always defined 94 fDecayPhysicsList = new G4DecayPhysics(); 94 fDecayPhysicsList = new G4DecayPhysics(); 95 } 95 } 96 96 97 UltraPhysicsList::~UltraPhysicsList() 97 UltraPhysicsList::~UltraPhysicsList() 98 { 98 { 99 delete fDecayPhysicsList; 99 delete fDecayPhysicsList; 100 delete fEmPhysicsList; 100 delete fEmPhysicsList; 101 delete fOpPhysicsList; 101 delete fOpPhysicsList; 102 // delete fStepMaxProcess; 102 // delete fStepMaxProcess; 103 } 103 } 104 104 105 105 106 void UltraPhysicsList::ConstructParticle() 106 void UltraPhysicsList::ConstructParticle() 107 { 107 { 108 fDecayPhysicsList->ConstructParticle(); 108 fDecayPhysicsList->ConstructParticle(); 109 } 109 } 110 110 111 111 112 void UltraPhysicsList::ConstructProcess() 112 void UltraPhysicsList::ConstructProcess() 113 { 113 { 114 AddTransportation(); 114 AddTransportation(); 115 if (fEmPhysicsList) 115 if (fEmPhysicsList) 116 fEmPhysicsList->ConstructProcess(); 116 fEmPhysicsList->ConstructProcess(); 117 117 118 if (fOpPhysicsList) 118 if (fOpPhysicsList) 119 fOpPhysicsList->ConstructProcess(); 119 fOpPhysicsList->ConstructProcess(); 120 120 121 if (fDecayPhysicsList) 121 if (fDecayPhysicsList) 122 fDecayPhysicsList->ConstructProcess(); 122 fDecayPhysicsList->ConstructProcess(); 123 } 123 } 124 124 125 125 126 void UltraPhysicsList::SetCuts() 126 void UltraPhysicsList::SetCuts() 127 { 127 { 128 if (verboseLevel >1){ 128 if (verboseLevel >1){ 129 G4cout << "UltraPhysicsList::SetCuts:"; 129 G4cout << "UltraPhysicsList::SetCuts:"; 130 } 130 } 131 // " G4VUserPhysicsList::SetCutsWithDefault 131 // " G4VUserPhysicsList::SetCutsWithDefault" method sets 132 // the default cut value for all particle 132 // the default cut value for all particle types 133 SetCutsWithDefault(); 133 SetCutsWithDefault(); 134 } 134 } 135 135