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 // G4UImessenger 26 // G4UImessenger 27 // 27 // 28 // Author: Makoto Asai, 1998 28 // Author: Makoto Asai, 1998 29 // ------------------------------------------- 29 // -------------------------------------------------------------------- 30 30 31 #include "G4UImessenger.hh" 31 #include "G4UImessenger.hh" 32 << 32 #include "G4UImanager.hh" 33 #include "G4UIcommand.hh" 33 #include "G4UIcommand.hh" 34 #include "G4UIcommandTree.hh" << 35 #include "G4UIdirectory.hh" 34 #include "G4UIdirectory.hh" 36 #include "G4UImanager.hh" << 35 #include "G4UIcommandTree.hh" 37 #include "G4UIparsing.hh" << 38 #include "G4ios.hh" 36 #include "G4ios.hh" 39 << 40 #include <sstream> 37 #include <sstream> 41 #include <utility> << 38 >> 39 // -------------------------------------------------------------------- >> 40 G4UImessenger::G4UImessenger() >> 41 { >> 42 } 42 43 43 // ------------------------------------------- 44 // -------------------------------------------------------------------- 44 G4UImessenger::G4UImessenger(const G4String& p 45 G4UImessenger::G4UImessenger(const G4String& path, const G4String& dsc, 45 G4bool commandsTo 46 G4bool commandsToBeBroadcasted) 46 { 47 { 47 CreateDirectory(path, dsc, commandsToBeBroad 48 CreateDirectory(path, dsc, commandsToBeBroadcasted); 48 } 49 } 49 50 50 // ------------------------------------------- 51 // -------------------------------------------------------------------- 51 G4UImessenger::~G4UImessenger() 52 G4UImessenger::~G4UImessenger() 52 { 53 { 53 delete baseDir; 54 delete baseDir; 54 } 55 } 55 56 56 // ------------------------------------------- 57 // -------------------------------------------------------------------- 57 G4String G4UImessenger::GetCurrentValue(G4UIco 58 G4String G4UImessenger::GetCurrentValue(G4UIcommand*) 58 { 59 { 59 return G4String{}; << 60 G4String nullString; >> 61 return nullString; >> 62 } >> 63 >> 64 // -------------------------------------------------------------------- >> 65 void G4UImessenger::SetNewValue(G4UIcommand*, G4String) >> 66 { 60 } 67 } 61 68 62 // ------------------------------------------- 69 // -------------------------------------------------------------------- 63 void G4UImessenger::SetNewValue(G4UIcommand*, << 70 G4bool G4UImessenger::operator==(const G4UImessenger& messenger) const >> 71 { >> 72 return this == &messenger; >> 73 } 64 74 65 // ------------------------------------------- 75 // -------------------------------------------------------------------- 66 G4String G4UImessenger::ItoS(G4int i) << 76 G4bool G4UImessenger::operator!=(const G4UImessenger& messenger) const 67 { 77 { 68 std::ostringstream os; << 78 return this != &messenger; 69 os << i; << 70 return G4String(os.str()); << 71 } 79 } 72 80 73 // ------------------------------------------- 81 // -------------------------------------------------------------------- 74 G4String G4UImessenger::LtoS(G4long l) << 82 G4String G4UImessenger::ItoS(G4int i) 75 { 83 { 76 std::ostringstream os; 84 std::ostringstream os; 77 os << l; << 85 os << i; 78 return G4String(os.str()); 86 return G4String(os.str()); 79 } 87 } 80 88 81 // ------------------------------------------- 89 // -------------------------------------------------------------------- 82 G4String G4UImessenger::DtoS(G4double a) 90 G4String G4UImessenger::DtoS(G4double a) 83 { 91 { 84 std::ostringstream os; 92 std::ostringstream os; 85 os << a; 93 os << a; 86 return G4String(os.str()); 94 return G4String(os.str()); 87 } 95 } 88 96 89 // ------------------------------------------- 97 // -------------------------------------------------------------------- 90 G4String G4UImessenger::BtoS(G4bool b) 98 G4String G4UImessenger::BtoS(G4bool b) 91 { 99 { 92 return b ? "true" : "0"; << 100 G4String vl = "0"; >> 101 if(b) >> 102 vl = "true"; >> 103 return vl; 93 } 104 } 94 105 95 // ------------------------------------------- 106 // -------------------------------------------------------------------- 96 G4int G4UImessenger::StoI(const G4String& str) << 107 G4int G4UImessenger::StoI(G4String str) 97 { 108 { 98 return G4UIparsing::StoT<G4int>(str); << 109 G4int vl; >> 110 const char* t = str; >> 111 std::istringstream is(t); >> 112 is >> vl; >> 113 return vl; 99 } 114 } 100 115 101 // ------------------------------------------- 116 // -------------------------------------------------------------------- 102 G4long G4UImessenger::StoL(const G4String& str << 117 G4long G4UImessenger::StoL(G4String str) 103 { 118 { 104 return G4UIparsing::StoT<G4long>(str); << 119 G4long vl; >> 120 const char* t = str; >> 121 std::istringstream is(t); >> 122 is >> vl; >> 123 return vl; 105 } 124 } 106 125 107 // ------------------------------------------- 126 // -------------------------------------------------------------------- 108 G4double G4UImessenger::StoD(const G4String& s << 127 G4double G4UImessenger::StoD(G4String str) 109 { 128 { 110 return G4UIparsing::StoT<G4double>(str); << 129 G4double vl; >> 130 const char* t = str; >> 131 std::istringstream is(t); >> 132 is >> vl; >> 133 return vl; 111 } 134 } 112 135 113 // ------------------------------------------- 136 // -------------------------------------------------------------------- 114 G4bool G4UImessenger::StoB(const G4String& str << 137 G4bool G4UImessenger::StoB(G4String str) 115 { 138 { 116 const G4String& v = G4StrUtil::to_upper_copy << 139 G4String v = G4StrUtil::to_upper_copy(str); 117 return (v == "Y" || v == "YES" || v == "1" | << 140 G4bool vl = false; >> 141 if(v == "Y" || v == "YES" || v == "1" || v == "T" || v == "TRUE") >> 142 { >> 143 vl = true; >> 144 } >> 145 return vl; 118 } 146 } 119 147 120 // ------------------------------------------- 148 // -------------------------------------------------------------------- 121 void G4UImessenger::AddUIcommand(G4UIcommand* 149 void G4UImessenger::AddUIcommand(G4UIcommand* newCommand) 122 { 150 { 123 G4cerr << "Warning : Old style definition of << 151 G4cerr << "Warning : Old style definition of G4UIcommand <" 124 << ">." << G4endl; << 152 << newCommand->GetCommandPath() << ">." << G4endl; 125 } 153 } 126 154 127 // ------------------------------------------- 155 // -------------------------------------------------------------------- 128 void G4UImessenger::CreateDirectory(const G4St 156 void G4UImessenger::CreateDirectory(const G4String& path, const G4String& dsc, 129 G4bool com 157 G4bool commandsToBeBroadcasted) 130 { 158 { 131 G4UImanager* ui = G4UImanager::GetUIpointer( 159 G4UImanager* ui = G4UImanager::GetUIpointer(); 132 160 133 G4String fullpath = path; 161 G4String fullpath = path; 134 if (fullpath.back() != '/') { << 162 if(fullpath.back() != '/') 135 fullpath.append("/"); 163 fullpath.append("/"); 136 } << 137 164 138 G4UIcommandTree* tree = ui->GetTree()->FindC 165 G4UIcommandTree* tree = ui->GetTree()->FindCommandTree(fullpath.c_str()); 139 if (tree != nullptr) { << 166 if(tree != nullptr) >> 167 { 140 baseDirName = tree->GetPathName(); 168 baseDirName = tree->GetPathName(); 141 } 169 } 142 else { << 170 else 143 baseDir = new G4UIdirectory(fullpath.c_str << 171 { 144 baseDirName = std::move(fullpath); << 172 baseDir = new G4UIdirectory(fullpath.c_str(), commandsToBeBroadcasted); >> 173 baseDirName = fullpath; 145 baseDir->SetGuidance(dsc.c_str()); 174 baseDir->SetGuidance(dsc.c_str()); 146 } 175 } 147 } 176 } 148 177