Geant4 Cross Reference |
>> 1 // This code implementation is the intellectual property of >> 2 // the GEANT4 collaboration. 1 // 3 // 2 // ******************************************* << 4 // By copying, distributing or modifying the Program (or any work 3 // * License and Disclaimer << 5 // based on the Program) you indicate your acceptance of this statement, 4 // * << 6 // and all its terms. 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 // 7 // 26 // G4UImessenger << 8 // $Id: G4UImessenger.cc,v 1.2 1999/12/15 14:50:42 gunter Exp $ >> 9 // GEANT4 tag $Name: geant4-01-01 $ 27 // 10 // 28 // Author: Makoto Asai, 1998 << 29 // ------------------------------------------- << 30 11 31 #include "G4UImessenger.hh" 12 #include "G4UImessenger.hh" 32 << 33 #include "G4UIcommand.hh" << 34 #include "G4UIcommandTree.hh" << 35 #include "G4UIdirectory.hh" << 36 #include "G4UImanager.hh" 13 #include "G4UImanager.hh" 37 #include "G4UIparsing.hh" << 14 #include "G4UIcommand.hh" >> 15 #include <string.h> 38 #include "G4ios.hh" 16 #include "G4ios.hh" 39 17 40 #include <sstream> << 18 #include "g4std/strstream" 41 #include <utility> << 42 19 43 // ------------------------------------------- << 44 G4UImessenger::G4UImessenger(const G4String& p << 45 G4bool commandsTo << 46 { << 47 CreateDirectory(path, dsc, commandsToBeBroad << 48 } << 49 20 50 // ------------------------------------------- << 21 G4UImessenger::G4UImessenger() { } 51 G4UImessenger::~G4UImessenger() << 52 { << 53 delete baseDir; << 54 } << 55 22 56 // ------------------------------------------- << 23 G4UImessenger::~G4UImessenger() { } 57 G4String G4UImessenger::GetCurrentValue(G4UIco << 24 58 { << 25 G4String G4UImessenger::GetCurrentValue(G4UIcommand * command) 59 return G4String{}; << 26 { >> 27 G4String nullString; >> 28 return nullString; 60 } 29 } 61 30 62 // ------------------------------------------- << 31 void G4UImessenger::SetNewValue(G4UIcommand * command,G4String newValue) 63 void G4UImessenger::SetNewValue(G4UIcommand*, << 32 { ; } 64 33 65 // ------------------------------------------- << 34 G4bool G4UImessenger::operator == (const G4UImessenger& messenger) const { 66 G4String G4UImessenger::ItoS(G4int i) << 35 return this == &messenger; 67 { << 68 std::ostringstream os; << 69 os << i; << 70 return G4String(os.str()); << 71 } 36 } 72 37 73 // ------------------------------------------- << 38 G4String G4UImessenger::ItoS(G4int i) 74 G4String G4UImessenger::LtoS(G4long l) << 75 { 39 { 76 std::ostringstream os; << 40 char defVal[20]; 77 os << l; << 41 G4std::ostrstream os(defVal,20); 78 return G4String(os.str()); << 42 os << i << '\0'; >> 43 return G4String(defVal); 79 } 44 } 80 45 81 // ------------------------------------------- << 82 G4String G4UImessenger::DtoS(G4double a) 46 G4String G4UImessenger::DtoS(G4double a) 83 { 47 { 84 std::ostringstream os; << 48 char defVal[40]; 85 os << a; << 49 G4std::ostrstream os(defVal,40); 86 return G4String(os.str()); << 50 os << a << '\0'; >> 51 return G4String(defVal); 87 } 52 } 88 53 89 // ------------------------------------------- << 90 G4String G4UImessenger::BtoS(G4bool b) 54 G4String G4UImessenger::BtoS(G4bool b) 91 { 55 { 92 return b ? "true" : "0"; << 56 G4String vl = "0"; >> 57 if(b) vl = "true"; >> 58 return vl; 93 } 59 } 94 60 95 // ------------------------------------------- << 61 G4int G4UImessenger::StoI(G4String s) 96 G4int G4UImessenger::StoI(const G4String& str) << 97 { 62 { 98 return G4UIparsing::StoT<G4int>(str); << 63 G4int vl; >> 64 const char* t = s; >> 65 G4std::istrstream is((char*)t); >> 66 is >> vl; >> 67 return vl; 99 } 68 } 100 69 101 // ------------------------------------------- << 70 G4double G4UImessenger::StoD(G4String s) 102 G4long G4UImessenger::StoL(const G4String& str << 103 { 71 { 104 return G4UIparsing::StoT<G4long>(str); << 72 G4double vl; >> 73 const char* t = s; >> 74 G4std::istrstream is((char*)t); >> 75 is >> vl; >> 76 return vl; 105 } 77 } 106 78 107 // ------------------------------------------- << 79 G4bool G4UImessenger::StoB(G4String s) 108 G4double G4UImessenger::StoD(const G4String& s << 109 { 80 { 110 return G4UIparsing::StoT<G4double>(str); << 81 G4String v = s; >> 82 v.toUpper(); >> 83 G4bool vl = false; >> 84 if( v=="Y" || v=="YES" || v=="1" || v=="T" || v=="TRUE" ) >> 85 { vl = true; } >> 86 return vl; 111 } 87 } 112 88 113 // ------------------------------------------- << 114 G4bool G4UImessenger::StoB(const G4String& str << 115 { << 116 const G4String& v = G4StrUtil::to_upper_copy << 117 return (v == "Y" || v == "YES" || v == "1" | << 118 } << 119 89 120 // ------------------------------------------- << 90 void G4UImessenger::AddUIcommand(G4UIcommand * newCommand) 121 void G4UImessenger::AddUIcommand(G4UIcommand* << 122 { 91 { 123 G4cerr << "Warning : Old style definition of << 92 G4cerr << "Warning : Old style definition of G4UIcommand <" 124 << ">." << G4endl; << 93 << newCommand->GetCommandPath() << ">." << G4endl; 125 } 94 } 126 95 127 // ------------------------------------------- << 128 void G4UImessenger::CreateDirectory(const G4St << 129 G4bool com << 130 { << 131 G4UImanager* ui = G4UImanager::GetUIpointer( << 132 << 133 G4String fullpath = path; << 134 if (fullpath.back() != '/') { << 135 fullpath.append("/"); << 136 } << 137 << 138 G4UIcommandTree* tree = ui->GetTree()->FindC << 139 if (tree != nullptr) { << 140 baseDirName = tree->GetPathName(); << 141 } << 142 else { << 143 baseDir = new G4UIdirectory(fullpath.c_str << 144 baseDirName = std::move(fullpath); << 145 baseDir->SetGuidance(dsc.c_str()); << 146 } << 147 } << 148 96