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 // Hadrontherapy advanced example for Geant4 27 // See more at: https://twiki.cern.ch/twiki/bi 28 29 #include "HadrontherapyAnalysisFileMessenger.h 30 #include "G4UIcmdWithAString.hh" 31 #include "G4UIcmdWithABool.hh" 32 #include "G4UIdirectory.hh" 33 #include "G4SystemOfUnits.hh" 34 35 #include "HadrontherapyMatrix.hh" 36 #include "HadrontherapyLet.hh" 37 38 ////////////////////////////////////////////// 39 HadrontherapyAnalysisFileMessenger::Hadronther 40 :AnalysisManager(amgr) 41 { 42 secondaryCmd = new G4UIcmdWithABool("/anal 43 secondaryCmd -> SetParameterName("secondar 44 secondaryCmd -> SetDefaultValue("true"); 45 secondaryCmd -> SetGuidance("Set if dose/f 46 "\n[usage]: /a 47 secondaryCmd -> AvailableForStates(G4State 48 49 DoseMatrixCmd = new G4UIcmdWithAString("/a 50 DoseMatrixCmd->SetGuidance("Write the dose 51 DoseMatrixCmd->SetDefaultValue("Dose.out") 52 DoseMatrixCmd->SetParameterName("choice",t 53 54 LetCmd = new G4UIcmdWithABool("/analysis/c 55 LetCmd -> SetParameterName("choice",true) 56 LetCmd -> SetDefaultValue(true); 57 LetCmd -> SetGuidance("Set if Let must be 58 LetCmd -> AvailableForStates(G4State_Idle 59 60 } 61 62 ////////////////////////////////////////////// 63 HadrontherapyAnalysisFileMessenger::~Hadronthe 64 { 65 delete secondaryCmd; 66 delete DoseMatrixCmd; 67 delete LetCmd; 68 } 69 70 ////////////////////////////////////////////// 71 void HadrontherapyAnalysisFileMessenger::SetNe 72 { 73 if (command == secondaryCmd) 74 { 75 if (HadrontherapyMatrix::GetInstance() 76 { 77 HadrontherapyMatrix::GetInstance() 78 } 79 } 80 81 else if (command == DoseMatrixCmd) // File 82 { 83 if ( HadrontherapyMatrix * pMatrix = H 84 { 85 //pMatrix -> TotalEnergyDeposit(); 86 pMatrix -> StoreDoseFluenceAscii(n 87 } 88 } 89 90 else if (command == LetCmd) 91 { 92 if (HadrontherapyLet::GetInstance()) 93 HadrontherapyLet::GetInstance() -> 94 } 95 } 96 97