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 // Hadrontherapy advanced example for Geant4 << 26 // This is the *BASIC* version of Hadrontherapy, a Geant4-based application 27 // See more at: https://twiki.cern.ch/twiki/bi << 27 // See more at: http://g4advancedexamples.lngs.infn.it/Examples/hadrontherapy >> 28 // >> 29 // Visit the Hadrontherapy web site (http://www.lns.infn.it/link/Hadrontherapy) to request >> 30 // the *COMPLETE* version of this program, together with its documentation; >> 31 // Hadrontherapy (both basic and full version) are supported by the Italian INFN >> 32 // Institute in the framework of the MC-INFN Group >> 33 // 28 34 29 #include "HadrontherapyDetectorMessenger.hh" 35 #include "HadrontherapyDetectorMessenger.hh" 30 #include "HadrontherapyDetectorConstruction.hh 36 #include "HadrontherapyDetectorConstruction.hh" 31 #include "G4UIdirectory.hh" 37 #include "G4UIdirectory.hh" 32 #include "G4UIcmdWith3VectorAndUnit.hh" 38 #include "G4UIcmdWith3VectorAndUnit.hh" 33 #include "G4UIcmdWithoutParameter.hh" 39 #include "G4UIcmdWithoutParameter.hh" 34 #include "G4UIcmdWithAString.hh" 40 #include "G4UIcmdWithAString.hh" 35 #include "G4SystemOfUnits.hh" << 36 #include "G4UIcmdWithABool.hh" << 37 41 38 ////////////////////////////////////////////// 42 ///////////////////////////////////////////////////////////////////////////// 39 HadrontherapyDetectorMessenger::HadrontherapyD 43 HadrontherapyDetectorMessenger::HadrontherapyDetectorMessenger(HadrontherapyDetectorConstruction* detector) 40 :hadrontherapyDetector(detector) << 44 :hadrontherapyDetector(detector) 41 { 45 { 42 // Change Phantom size 46 // Change Phantom size 43 changeThePhantomDir = new G4UIdirectory("/ 47 changeThePhantomDir = new G4UIdirectory("/changePhantom/"); 44 changeThePhantomDir -> SetGuidance("Comman 48 changeThePhantomDir -> SetGuidance("Command to change the Phantom Size/position"); 45 changeThePhantomSizeCmd = new G4UIcmdWith3 49 changeThePhantomSizeCmd = new G4UIcmdWith3VectorAndUnit("/changePhantom/size", this); 46 changeThePhantomSizeCmd -> SetGuidance("In 50 changeThePhantomSizeCmd -> SetGuidance("Insert sizes X Y and Z" 47 "\n << 51 "\n 0 or negative values mean <<Don't change it!>>"); 48 changeThePhantomSizeCmd -> SetParameterNam << 52 changeThePhantomSizeCmd -> SetParameterName("PhantomSizeAlongX", 49 << 53 "PhantomSizeAlongY", 50 << 54 "PhantomSizeAlongZ", false); 51 changeThePhantomSizeCmd -> SetDefaultUnit( 55 changeThePhantomSizeCmd -> SetDefaultUnit("mm"); 52 changeThePhantomSizeCmd -> SetUnitCandidat << 56 changeThePhantomSizeCmd -> SetUnitCandidates("nm um mm cm"); 53 changeThePhantomSizeCmd -> AvailableForSta 57 changeThePhantomSizeCmd -> AvailableForStates(G4State_Idle); 54 << 58 55 << 59 56 // Change Phantom material << 60 // Change Phantom material 57 changeThePhantomMaterialCmd = new G4UIcmdW 61 changeThePhantomMaterialCmd = new G4UIcmdWithAString("/changePhantom/material", this); 58 changeThePhantomMaterialCmd -> SetGuidance << 62 changeThePhantomMaterialCmd -> SetGuidance("Change the Phantom and the detector material"); 59 changeThePhantomMaterialCmd -> SetParamete 63 changeThePhantomMaterialCmd -> SetParameterName("PhantomMaterial", false); 60 changeThePhantomMaterialCmd -> SetDefaultV 64 changeThePhantomMaterialCmd -> SetDefaultValue("G4_WATER"); 61 changeThePhantomMaterialCmd -> AvailableFo 65 changeThePhantomMaterialCmd -> AvailableForStates(G4State_Idle); 62 << 66 63 // Change Phantom position 67 // Change Phantom position 64 changeThePhantomPositionCmd = new G4UIcmdW 68 changeThePhantomPositionCmd = new G4UIcmdWith3VectorAndUnit("/changePhantom/position", this); 65 changeThePhantomPositionCmd -> SetGuidance 69 changeThePhantomPositionCmd -> SetGuidance("Insert X Y and Z dimensions for the position of the center of the Phantom" 66 << 70 " respect to that of the \"World\""); 67 changeThePhantomPositionCmd -> SetParamete << 71 changeThePhantomPositionCmd -> SetParameterName("PositionAlongX", 68 << 72 "PositionAlongY", 69 << 73 "PositionAlongZ", false); 70 changeThePhantomPositionCmd -> SetDefaultU 74 changeThePhantomPositionCmd -> SetDefaultUnit("mm"); 71 changeThePhantomPositionCmd -> SetUnitCand << 75 changeThePhantomPositionCmd -> SetUnitCandidates("um mm cm m"); 72 changeThePhantomPositionCmd -> AvailableFo 76 changeThePhantomPositionCmd -> AvailableForStates(G4State_Idle); 73 << 77 74 << 78 75 updateCmd = new G4UIcmdWithoutParameter("/ 79 updateCmd = new G4UIcmdWithoutParameter("/changePhantom/update",this); 76 updateCmd->SetGuidance("Update Phantom/Det 80 updateCmd->SetGuidance("Update Phantom/Detector geometry."); 77 updateCmd->SetGuidance("This command MUST 81 updateCmd->SetGuidance("This command MUST be applied before \"beamOn\" "); 78 updateCmd->SetGuidance("if you changed geo 82 updateCmd->SetGuidance("if you changed geometrical value(s)."); 79 updateCmd->AvailableForStates(G4State_Idle 83 updateCmd->AvailableForStates(G4State_Idle); 80 << 84 81 // Change detector size 85 // Change detector size 82 changeTheDetectorDir = new G4UIdirectory(" 86 changeTheDetectorDir = new G4UIdirectory("/changeDetector/"); 83 changeTheDetectorDir -> SetGuidance("Comma 87 changeTheDetectorDir -> SetGuidance("Command to change the Detector's Size/position/Voxels"); 84 88 85 changeTheDetectorSizeCmd = new G4UIcmdWith 89 changeTheDetectorSizeCmd = new G4UIcmdWith3VectorAndUnit("/changeDetector/size",this); 86 changeTheDetectorSizeCmd -> SetGuidance("I 90 changeTheDetectorSizeCmd -> SetGuidance("Insert sizes for X Y and Z dimensions of the Detector" 87 "\ << 91 "\n 0 or negative values mean <<Don't change it>>"); 88 changeTheDetectorSizeCmd -> SetParameterNa 92 changeTheDetectorSizeCmd -> SetParameterName("DetectorSizeAlongX", "DetectorSizeAlongY", "DetectorSizeAlongZ", false); 89 changeTheDetectorSizeCmd -> SetDefaultUnit 93 changeTheDetectorSizeCmd -> SetDefaultUnit("mm"); 90 changeTheDetectorSizeCmd -> SetUnitCandida << 94 changeTheDetectorSizeCmd -> SetUnitCandidates("nm um mm cm"); 91 changeTheDetectorSizeCmd -> AvailableForSt 95 changeTheDetectorSizeCmd -> AvailableForStates(G4State_Idle); 92 << 96 93 // Change the detector to phantom displac 97 // Change the detector to phantom displacement 94 changeTheDetectorToPhantomPositionCmd = ne 98 changeTheDetectorToPhantomPositionCmd = new G4UIcmdWith3VectorAndUnit("/changeDetector/displacement",this); 95 changeTheDetectorToPhantomPositionCmd -> S 99 changeTheDetectorToPhantomPositionCmd -> SetGuidance("Insert X Y and Z displacements between Detector and Phantom" 96 << 100 "\nNegative values mean <<Don't change it!>>"); 97 changeTheDetectorToPhantomPositionCmd -> S 101 changeTheDetectorToPhantomPositionCmd -> SetParameterName("DisplacementAlongX", 98 << 102 "DisplacementAlongY", 99 << 103 "DisplacementAlongZ", false); 100 changeTheDetectorToPhantomPositionCmd -> S 104 changeTheDetectorToPhantomPositionCmd -> SetDefaultUnit("mm"); 101 changeTheDetectorToPhantomPositionCmd -> S << 105 changeTheDetectorToPhantomPositionCmd -> SetUnitCandidates("nm um mm cm"); 102 changeTheDetectorToPhantomPositionCmd -> A 106 changeTheDetectorToPhantomPositionCmd -> AvailableForStates(G4State_Idle); 103 107 104 // Change voxels by its size 108 // Change voxels by its size 105 changeTheDetectorVoxelCmd = new G4UIcmdWit 109 changeTheDetectorVoxelCmd = new G4UIcmdWith3VectorAndUnit("/changeDetector/voxelSize",this); 106 changeTheDetectorVoxelCmd -> SetGuidance(" 110 changeTheDetectorVoxelCmd -> SetGuidance("Insert Voxel sizes for X Y and Z dimensions" 107 " << 111 "\n 0 or negative values mean <<Don't change it!>>"); 108 changeTheDetectorVoxelCmd -> SetParameterN 112 changeTheDetectorVoxelCmd -> SetParameterName("VoxelSizeAlongX", "VoxelSizeAlongY", "VoxelSizeAlongZ", false); 109 changeTheDetectorVoxelCmd -> SetDefaultUni 113 changeTheDetectorVoxelCmd -> SetDefaultUnit("mm"); 110 changeTheDetectorVoxelCmd -> SetUnitCandid 114 changeTheDetectorVoxelCmd -> SetUnitCandidates("nm um mm cm"); 111 changeTheDetectorVoxelCmd -> AvailableForS 115 changeTheDetectorVoxelCmd -> AvailableForStates(G4State_Idle); 112 << 116 } 113 << 114 changeTheSource = new G4UIdirectory("/chan << 115 changeTheSource -> SetGuidance("Command to << 116 << 117 << 118 << 119 << 120 ////////////////////////////////////////// << 121 << 122 VirtualLayer = new G4UIcmdWithABool("/chan << 123 VirtualLayer -> SetParameterName("VirtualL << 124 VirtualLayer -> SetDefaultValue("false"); << 125 VirtualLayer -> SetGuidance("Set if you wa << 126 "\n[usage]: /c << 127 VirtualLayer -> AvailableForStates(G4State << 128 << 129 << 130 VirtualLayerPosition = new G4UIcmdWith3Vec << 131 VirtualLayerPosition -> SetGuidance("Inser << 132 " resp << 133 VirtualLayerPosition -> SetParameterName(" << 134 " << 135 " << 136 << 137 VirtualLayerPosition -> SetDefaultUnit("cm << 138 VirtualLayerPosition -> SetUnitCandidates( << 139 VirtualLayerPosition -> AvailableForStates << 140 << 141 << 142 << 143 } << 144 117 145 ////////////////////////////////////////////// 118 ///////////////////////////////////////////////////////////////////////////// 146 HadrontherapyDetectorMessenger::~Hadrontherapy 119 HadrontherapyDetectorMessenger::~HadrontherapyDetectorMessenger() 147 { 120 { 148 delete changeThePhantomDir; << 121 delete changeThePhantomDir; 149 delete changeThePhantomSizeCmd; << 122 delete changeThePhantomSizeCmd; 150 delete changeThePhantomPositionCmd; << 123 delete changeThePhantomPositionCmd; 151 delete changeThePhantomMaterialCmd; << 124 delete changeThePhantomMaterialCmd; 152 delete updateCmd; 125 delete updateCmd; 153 delete changeTheDetectorDir; << 126 delete changeTheDetectorDir; 154 delete changeTheDetectorSizeCmd; << 127 delete changeTheDetectorSizeCmd; 155 delete changeTheDetectorToPhantomPositionC << 128 delete changeTheDetectorToPhantomPositionCmd; 156 delete changeTheDetectorVoxelCmd; << 129 delete changeTheDetectorVoxelCmd; 157 delete VirtualLayer; << 158 delete VirtualLayerPosition; << 159 } 130 } 160 131 161 ////////////////////////////////////////////// 132 ///////////////////////////////////////////////////////////////////////////// 162 void HadrontherapyDetectorMessenger::SetNewVal 133 void HadrontherapyDetectorMessenger::SetNewValue(G4UIcommand* command,G4String newValue) 163 { 134 { 164 << 135 165 if( command == changeThePhantomSizeCmd) << 136 if( command == changeThePhantomSizeCmd) 166 { << 167 G4ThreeVector size = changeThePhantomS << 168 hadrontherapyDetector -> SetPhantomSiz << 169 } << 170 else if (command == changeThePhantomPositi << 171 { << 172 << 173 G4ThreeVector size = changeThePhantomP << 174 hadrontherapyDetector -> SetPhantomPos << 175 } << 176 else if (command == changeThePhantomMateri << 177 { 137 { 178 hadrontherapyDetector -> SetPhantomMat << 138 G4ThreeVector size = changeThePhantomSizeCmd -> GetNew3VectorValue(newValue); >> 139 hadrontherapyDetector -> SetPhantomSize(size.getX(),size.getY(),size.getZ()); 179 } 140 } 180 else if (command == changeTheDetectorSizeC << 141 else if (command == changeThePhantomPositionCmd ) 181 { << 142 { 182 G4ThreeVector size = changeTheDetector << 143 G4ThreeVector size = changeThePhantomPositionCmd -> GetNew3VectorValue(newValue); >> 144 hadrontherapyDetector -> SetPhantomPosition(size); >> 145 } >> 146 else if (command == changeThePhantomMaterialCmd) >> 147 { >> 148 hadrontherapyDetector -> SetPhantomMaterial(newValue); >> 149 } >> 150 else if (command == changeTheDetectorSizeCmd) >> 151 { >> 152 G4ThreeVector size = changeTheDetectorSizeCmd -> GetNew3VectorValue(newValue); 183 hadrontherapyDetector -> SetDetectorSi 153 hadrontherapyDetector -> SetDetectorSize(size.getX(),size.getY(),size.getZ()); 184 } << 154 } 185 else if (command == changeTheDetectorToPha << 155 else if (command == changeTheDetectorToPhantomPositionCmd) 186 { << 156 { 187 G4ThreeVector size = changeTheDetector << 157 G4ThreeVector size = changeTheDetectorToPhantomPositionCmd-> GetNew3VectorValue(newValue); 188 hadrontherapyDetector -> SetDetectorTo 158 hadrontherapyDetector -> SetDetectorToPhantomPosition(size); 189 << 159 } 190 } << 160 else if (command == changeTheDetectorVoxelCmd) 191 else if (command == changeTheDetectorVoxel << 161 { 192 { << 162 G4ThreeVector size = changeTheDetectorVoxelCmd -> GetNew3VectorValue(newValue); 193 G4ThreeVector size = changeTheDetector << 194 hadrontherapyDetector -> SetVoxelSize( 163 hadrontherapyDetector -> SetVoxelSize(size.getX(),size.getY(),size.getZ()); 195 } << 164 } 196 else if (command == updateCmd) << 165 else if (command == updateCmd) 197 { << 166 { 198 hadrontherapyDetector -> UpdateGeometr << 167 hadrontherapyDetector -> UpdateGeometry(); 199 } << 168 } 200 << 201 else if(command == VirtualLayer) << 202 { << 203 hadrontherapyDetector->VirtualLayer(Vi << 204 } << 205 else if(command == VirtualLayerPosition) << 206 { << 207 G4ThreeVector size = VirtualLayerPosit << 208 << 209 hadrontherapyDetector -> SetVirtualLay << 210 } << 211 << 212 } 169 } 213 170