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 medical/GammaTherapy/src/PhysicsList 26 /// \file medical/GammaTherapy/src/PhysicsListMessenger.cc 27 /// \brief Implementation of the PhysicsListMe 27 /// \brief Implementation of the PhysicsListMessenger class 28 // 28 // >> 29 // $Id: PhysicsListMessenger.cc 67994 2013-03-13 11:05:39Z gcosmo $ 29 // 30 // 30 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 33 33 #include "PhysicsListMessenger.hh" 34 #include "PhysicsListMessenger.hh" 34 35 35 #include "PhysicsList.hh" 36 #include "PhysicsList.hh" 36 << 37 #include "G4UIdirectory.hh" 37 #include "G4LossTableManager.hh" << 38 #include "G4UIcmdWithADoubleAndUnit.hh" 38 #include "G4UIcmdWithAString.hh" 39 #include "G4UIcmdWithAString.hh" 39 #include "G4UIcmdWithAnInteger.hh" 40 #include "G4UIcmdWithAnInteger.hh" 40 #include "G4UIdirectory.hh" << 41 #include "G4LossTableManager.hh" 41 42 42 //....oooOO0OOooo........oooOO0OOooo........oo 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 43 44 44 PhysicsListMessenger::PhysicsListMessenger(Phy << 45 PhysicsListMessenger::PhysicsListMessenger(PhysicsList* pPhys) >> 46 :fPhysicsList(pPhys) 45 { 47 { 46 fPhysDir = new G4UIdirectory("/testem/phys/" 48 fPhysDir = new G4UIdirectory("/testem/phys/"); 47 fPhysDir->SetGuidance("physics list commands 49 fPhysDir->SetGuidance("physics list commands"); >> 50 >> 51 fGammaCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setGCut",this); >> 52 fGammaCutCmd->SetGuidance("Set gamma cut."); >> 53 fGammaCutCmd->SetParameterName("Gcut",false); >> 54 fGammaCutCmd->SetUnitCategory("Length"); >> 55 fGammaCutCmd->SetRange("Gcut>0.0"); >> 56 fGammaCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 57 >> 58 fElectCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setECut",this); >> 59 fElectCutCmd->SetGuidance("Set electron cut."); >> 60 fElectCutCmd->SetParameterName("Ecut",false); >> 61 fElectCutCmd->SetUnitCategory("Length"); >> 62 fElectCutCmd->SetRange("Ecut>0.0"); >> 63 fElectCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 64 >> 65 fPositCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setPCut",this); >> 66 fPositCutCmd->SetGuidance("Set positron cut."); >> 67 fPositCutCmd->SetParameterName("Pcut",false); >> 68 fPositCutCmd->SetUnitCategory("Length"); >> 69 fPositCutCmd->SetRange("Pcut>0.0"); >> 70 fPositCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle); >> 71 >> 72 fAllCutCmd = new G4UIcmdWithADoubleAndUnit("/testem/phys/setCuts",this); >> 73 fAllCutCmd->SetGuidance("Set cut for all."); >> 74 fAllCutCmd->SetParameterName("cut",false); >> 75 fAllCutCmd->SetUnitCategory("Length"); >> 76 fAllCutCmd->SetRange("cut>0.0"); >> 77 fAllCutCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 48 78 49 fListCmd = new G4UIcmdWithAString("/testem/p << 79 fListCmd = new G4UIcmdWithAString("/testem/phys/addPhysics",this); 50 fListCmd->SetGuidance("Add modula physics li 80 fListCmd->SetGuidance("Add modula physics list."); 51 fListCmd->SetParameterName("PList", false); << 81 fListCmd->SetParameterName("PList",false); 52 fListCmd->AvailableForStates(G4State_PreInit << 82 fListCmd->AvailableForStates(G4State_PreInit); 53 83 54 fVerbCmd = new G4UIcmdWithAnInteger("/testem << 84 fVerbCmd = new G4UIcmdWithAnInteger("/testem/phys/verbose",this); 55 fVerbCmd->SetGuidance("Set verbose level for 85 fVerbCmd->SetGuidance("Set verbose level for processes"); 56 fVerbCmd->SetParameterName("pVerb", false); << 86 fVerbCmd->SetParameterName("pVerb",false); 57 fVerbCmd->AvailableForStates(G4State_PreInit << 87 fVerbCmd->AvailableForStates(G4State_PreInit,G4State_Idle); 58 } 88 } 59 89 60 //....oooOO0OOooo........oooOO0OOooo........oo 90 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 61 91 62 PhysicsListMessenger::~PhysicsListMessenger() 92 PhysicsListMessenger::~PhysicsListMessenger() 63 { 93 { >> 94 delete fGammaCutCmd; >> 95 delete fElectCutCmd; >> 96 delete fPositCutCmd; >> 97 delete fAllCutCmd; 64 delete fListCmd; 98 delete fListCmd; 65 delete fVerbCmd; 99 delete fVerbCmd; 66 delete fPhysDir; << 100 delete fPhysDir; 67 } 101 } 68 102 69 //....oooOO0OOooo........oooOO0OOooo........oo 103 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 70 104 71 void PhysicsListMessenger::SetNewValue(G4UIcom << 105 void PhysicsListMessenger::SetNewValue(G4UIcommand* command, 72 { << 106 G4String newValue) 73 if (command == fVerbCmd) { << 107 { 74 G4LossTableManager::Instance()->SetVerbose << 108 if( command == fGammaCutCmd ) 75 } << 109 { fPhysicsList->SetCutForGamma(fGammaCutCmd->GetNewDoubleValue(newValue));} 76 << 110 77 if (command == fListCmd) { << 111 if( command == fElectCutCmd ) 78 fPhysicsList->AddPhysicsList(newValue); << 112 { fPhysicsList->SetCutForElectron(fElectCutCmd->GetNewDoubleValue(newValue));} 79 } << 113 >> 114 if( command == fPositCutCmd ) >> 115 { fPhysicsList->SetCutForPositron(fPositCutCmd->GetNewDoubleValue(newValue));} >> 116 >> 117 if( command == fAllCutCmd ) >> 118 { >> 119 G4double cut = fAllCutCmd->GetNewDoubleValue(newValue); >> 120 fPhysicsList->SetCutForGamma(cut); >> 121 fPhysicsList->SetCutForElectron(cut); >> 122 fPhysicsList->SetCutForPositron(cut); >> 123 } >> 124 >> 125 if( command == fVerbCmd ) >> 126 { G4LossTableManager::Instance()->SetVerbose(fVerbCmd->GetNewIntValue(newValue));} >> 127 >> 128 if( command == fListCmd ) >> 129 { fPhysicsList->AddPhysicsList(newValue);} 80 } 130 } 81 131 82 //....oooOO0OOooo........oooOO0OOooo........oo 132 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 83 133