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 /// \file polarisation/Pol01/src/PhysicsList.c 26 /// \file polarisation/Pol01/src/PhysicsList.cc 27 /// \brief Implementation of the PhysicsList c 27 /// \brief Implementation of the PhysicsList class 28 // 28 // 29 // << 29 // >> 30 // $Id: PhysicsList.cc 100257 2016-10-17 08:00:06Z gcosmo $ 30 // 31 // 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 33 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 34 34 #include "PhysicsList.hh" 35 #include "PhysicsList.hh" 35 << 36 #include "PhysListEmPolarized.hh" << 37 #include "PhysicsListMessenger.hh" 36 #include "PhysicsListMessenger.hh" 38 #include "StepMax.hh" << 37 >> 38 #include "G4EmStandardPhysics.hh" >> 39 #include "PhysListEmPolarized.hh" 39 40 40 #include "G4EmBuilder.hh" << 41 #include "G4EmParameters.hh" 41 #include "G4EmParameters.hh" 42 #include "G4EmStandardPhysics.hh" << 43 #include "G4ProcessManager.hh" << 44 42 45 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 46 44 47 PhysicsList::PhysicsList() << 45 PhysicsList::PhysicsList() 48 : G4VModularPhysicsList(), fEmPhysicsList(0) << 46 : G4VModularPhysicsList(), >> 47 fEmPhysicsList(0), fEmName("polarized"), fMessenger(0) 49 { 48 { 50 fMessenger = new PhysicsListMessenger(this); 49 fMessenger = new PhysicsListMessenger(this); 51 50 52 G4EmParameters::Instance(); 51 G4EmParameters::Instance(); 53 52 54 SetVerboseLevel(1); 53 SetVerboseLevel(1); 55 54 56 fEmPhysicsList = new PhysListEmPolarized(); 55 fEmPhysicsList = new PhysListEmPolarized(); >> 56 57 } 57 } 58 58 59 //....oooOO0OOooo........oooOO0OOooo........oo 59 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 60 60 61 PhysicsList::~PhysicsList() 61 PhysicsList::~PhysicsList() 62 { 62 { 63 delete fMessenger; 63 delete fMessenger; 64 } 64 } 65 65 66 //....oooOO0OOooo........oooOO0OOooo........oo 66 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 67 67 >> 68 #include "G4BosonConstructor.hh" >> 69 #include "G4LeptonConstructor.hh" >> 70 #include "G4MesonConstructor.hh" >> 71 #include "G4BosonConstructor.hh" >> 72 #include "G4BaryonConstructor.hh" >> 73 #include "G4IonConstructor.hh" >> 74 #include "G4ShortLivedConstructor.hh" >> 75 >> 76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... >> 77 68 void PhysicsList::ConstructParticle() 78 void PhysicsList::ConstructParticle() 69 { 79 { 70 // minimal set of particles for EM physics << 80 G4BosonConstructor pBosonConstructor; 71 G4EmBuilder::ConstructMinimalEmSet(); << 81 pBosonConstructor.ConstructParticle(); >> 82 >> 83 G4LeptonConstructor pLeptonConstructor; >> 84 pLeptonConstructor.ConstructParticle(); >> 85 >> 86 G4MesonConstructor pMesonConstructor; >> 87 pMesonConstructor.ConstructParticle(); >> 88 >> 89 G4BaryonConstructor pBaryonConstructor; >> 90 pBaryonConstructor.ConstructParticle(); >> 91 >> 92 G4IonConstructor pIonConstructor; >> 93 pIonConstructor.ConstructParticle(); >> 94 >> 95 G4ShortLivedConstructor pShortLivedConstructor; >> 96 pShortLivedConstructor.ConstructParticle(); >> 97 72 } 98 } 73 99 74 //....oooOO0OOooo........oooOO0OOooo........oo 100 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 101 >> 102 #include "G4EmProcessOptions.hh" >> 103 76 void PhysicsList::ConstructProcess() 104 void PhysicsList::ConstructProcess() 77 { 105 { 78 // Transportation 106 // Transportation 79 // 107 // 80 AddTransportation(); 108 AddTransportation(); 81 109 82 // Electromagnetic physics list 110 // Electromagnetic physics list 83 // 111 // 84 fEmPhysicsList->ConstructProcess(); 112 fEmPhysicsList->ConstructProcess(); 85 << 113 86 // step limitation (as a full process) 114 // step limitation (as a full process) 87 // << 115 // 88 AddStepMax(); << 116 AddStepMax(); 89 } 117 } 90 118 91 //....oooOO0OOooo........oooOO0OOooo........oo 119 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 92 120 93 void PhysicsList::AddPhysicsList(const G4Strin 121 void PhysicsList::AddPhysicsList(const G4String& name) 94 { 122 { 95 if (verboseLevel > 0) { << 123 if (verboseLevel>0) { 96 G4cout << "PhysicsList::AddPhysicsList: <" 124 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; 97 } 125 } 98 << 126 99 if (name == fEmName) return; 127 if (name == fEmName) return; 100 128 101 if (name == "standard") { 129 if (name == "standard") { >> 130 102 fEmName = name; 131 fEmName = name; 103 delete fEmPhysicsList; 132 delete fEmPhysicsList; 104 fEmPhysicsList = new G4EmStandardPhysics() 133 fEmPhysicsList = new G4EmStandardPhysics(); 105 } << 134 106 else if (name == "polarized") { << 135 } else if (name == "polarized") { >> 136 107 fEmName = name; 137 fEmName = name; 108 delete fEmPhysicsList; 138 delete fEmPhysicsList; 109 fEmPhysicsList = new PhysListEmPolarized() 139 fEmPhysicsList = new PhysListEmPolarized(); 110 } << 140 111 else { << 141 } else { 112 G4cout << "PhysicsList::AddPhysicsList: <" 142 G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" 113 << " is not defined" << G4endl; << 143 << " is not defined" >> 144 << G4endl; 114 } 145 } 115 } 146 } 116 147 117 //....oooOO0OOooo........oooOO0OOooo........oo 148 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 118 149 >> 150 #include "G4ProcessManager.hh" >> 151 #include "StepMax.hh" >> 152 119 void PhysicsList::AddStepMax() 153 void PhysicsList::AddStepMax() 120 { 154 { 121 // Step limitation seen as a process 155 // Step limitation seen as a process 122 StepMax* stepMaxProcess = new StepMax(); 156 StepMax* stepMaxProcess = new StepMax(); 123 157 124 auto particleIterator = GetParticleIterator( << 158 auto particleIterator=GetParticleIterator(); 125 particleIterator->reset(); 159 particleIterator->reset(); 126 while ((*particleIterator)()) { << 160 while ((*particleIterator)()){ 127 G4ParticleDefinition* particle = particleI << 161 G4ParticleDefinition* particle = particleIterator->value(); 128 G4ProcessManager* pmanager = particle->Get << 162 G4ProcessManager* pmanager = particle->GetProcessManager(); 129 163 130 if (stepMaxProcess->IsApplicable(*particle << 164 if (stepMaxProcess->IsApplicable(*particle) && pmanager) 131 pmanager->AddDiscreteProcess(stepMaxProc << 165 pmanager ->AddDiscreteProcess(stepMaxProcess); 132 } 166 } 133 } 167 } 134 168 135 //....oooOO0OOooo........oooOO0OOooo........oo 169 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 136 170