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 // G4UIcmdWithADoubleAndUnit << 27 // 26 // 28 // Author: M.Asai, 1998 << 27 // $Id: G4UIcmdWithADoubleAndUnit.cc,v 1.10 2010/08/03 07:10:47 kmura Exp $ 29 // ------------------------------------------- << 28 // GEANT4 tag $Name: geant4-09-04 $ >> 29 // >> 30 // 30 31 31 #include "G4UIcmdWithADoubleAndUnit.hh" 32 #include "G4UIcmdWithADoubleAndUnit.hh" 32 << 33 #include "G4Tokenizer.hh" 33 #include "G4Tokenizer.hh" 34 #include "G4UIcommandStatus.hh" << 35 #include "G4UnitsTable.hh" 34 #include "G4UnitsTable.hh" 36 << 37 #include <sstream> 35 #include <sstream> 38 #include <vector> 36 #include <vector> 39 37 40 // ------------------------------------------- << 38 G4UIcmdWithADoubleAndUnit::G4UIcmdWithADoubleAndUnit 41 G4UIcmdWithADoubleAndUnit::G4UIcmdWithADoubleA << 39 (const char * theCommandPath,G4UImessenger * theMessenger) 42 << 40 :G4UIcommand(theCommandPath,theMessenger) 43 : G4UIcommand(theCommandPath, theMessenger) << 44 { 41 { 45 auto* dblParam = new G4UIparameter('d'); << 42 G4UIparameter * dblParam = new G4UIparameter('d'); 46 SetParameter(dblParam); 43 SetParameter(dblParam); 47 auto* untParam = new G4UIparameter('s'); << 44 G4UIparameter * untParam = new G4UIparameter('s'); 48 untParam->SetParameterName("Unit"); << 49 SetParameter(untParam); 45 SetParameter(untParam); 50 SetCommandType(WithADoubleAndUnitCmd); << 46 untParam->SetParameterName("Unit"); 51 } 47 } 52 48 53 // ------------------------------------------- << 49 G4int G4UIcmdWithADoubleAndUnit::DoIt(G4String parameterList) 54 G4int G4UIcmdWithADoubleAndUnit::DoIt(const G4 << 55 { 50 { 56 std::vector<G4String> token_vector; 51 std::vector<G4String> token_vector; 57 G4Tokenizer tkn(parameterList); << 52 G4Tokenizer token(parameterList); 58 G4String str; 53 G4String str; 59 while (!(str = tkn()).empty()) { << 54 while( (str = token()) != "" ) { 60 token_vector.push_back(str); 55 token_vector.push_back(str); 61 } 56 } 62 57 63 // convert a value in default unit 58 // convert a value in default unit 64 G4String converted_parameter; 59 G4String converted_parameter; 65 G4String default_unit = GetParameter(1)->Get << 60 G4String default_unit = GetParameter(1)-> GetDefaultValue(); 66 if (!default_unit.empty() && token_vector.si << 61 if (default_unit != "" && token_vector.size() >= 2) { 67 if (CategoryOf(token_vector[1]) != Categor << 68 return fParameterOutOfCandidates + 1; << 69 } << 70 G4double value_given = ValueOf(token_vecto 62 G4double value_given = ValueOf(token_vector[1]); 71 G4double value_default = ValueOf(default_u 63 G4double value_default = ValueOf(default_unit); 72 G4double value = ConvertToDouble(token_vec << 64 G4double value = ConvertToDouble(token_vector[0]) >> 65 * value_given / value_default; 73 // reconstruct parameter list 66 // reconstruct parameter list 74 converted_parameter += ConvertToString(val 67 converted_parameter += ConvertToString(value); 75 converted_parameter += " "; 68 converted_parameter += " "; 76 converted_parameter += default_unit; 69 converted_parameter += default_unit; 77 for (std::size_t i = 2; i < token_vector.s << 70 for ( size_t i=2 ; i< token_vector.size(); i++) { 78 converted_parameter += " "; 71 converted_parameter += " "; 79 converted_parameter += token_vector[i]; 72 converted_parameter += token_vector[i]; 80 } 73 } 81 } << 74 } else { 82 else { << 83 converted_parameter = parameterList; 75 converted_parameter = parameterList; 84 } 76 } 85 77 86 return G4UIcommand::DoIt(converted_parameter 78 return G4UIcommand::DoIt(converted_parameter); 87 } 79 } 88 80 89 // ------------------------------------------- << 90 G4double G4UIcmdWithADoubleAndUnit::GetNewDoub 81 G4double G4UIcmdWithADoubleAndUnit::GetNewDoubleValue(const char* paramString) 91 { 82 { 92 return ConvertToDimensionedDouble(paramStrin 83 return ConvertToDimensionedDouble(paramString); 93 } 84 } 94 85 95 // ------------------------------------------- << 96 G4double G4UIcmdWithADoubleAndUnit::GetNewDoub 86 G4double G4UIcmdWithADoubleAndUnit::GetNewDoubleRawValue(const char* paramString) 97 { 87 { 98 G4double vl; 88 G4double vl; 99 char unts[30]; 89 char unts[30]; 100 90 101 std::istringstream is(paramString); 91 std::istringstream is(paramString); 102 is >> vl >> unts; 92 is >> vl >> unts; 103 93 104 return vl; 94 return vl; 105 } 95 } 106 96 107 // ------------------------------------------- << 108 G4double G4UIcmdWithADoubleAndUnit::GetNewUnit 97 G4double G4UIcmdWithADoubleAndUnit::GetNewUnitValue(const char* paramString) 109 { 98 { 110 G4double vl; 99 G4double vl; 111 char unts[30]; 100 char unts[30]; 112 101 113 std::istringstream is(paramString); 102 std::istringstream is(paramString); 114 is >> vl >> unts; 103 is >> vl >> unts; 115 G4String unt = unts; 104 G4String unt = unts; 116 105 117 return ValueOf(unt); 106 return ValueOf(unt); 118 } 107 } 119 108 120 // ------------------------------------------- << 121 G4String G4UIcmdWithADoubleAndUnit::ConvertToS 109 G4String G4UIcmdWithADoubleAndUnit::ConvertToStringWithBestUnit(G4double val) 122 { 110 { 123 G4UIparameter* unitParam = GetParameter(1); 111 G4UIparameter* unitParam = GetParameter(1); 124 G4String canList = unitParam->GetParameterCa 112 G4String canList = unitParam->GetParameterCandidates(); 125 G4Tokenizer candidateTokenizer(canList); 113 G4Tokenizer candidateTokenizer(canList); 126 G4String aToken = candidateTokenizer(); 114 G4String aToken = candidateTokenizer(); 127 std::ostringstream os; 115 std::ostringstream os; 128 os << G4BestUnit(val, CategoryOf(aToken)); << 116 os << G4BestUnit(val,CategoryOf(aToken)); 129 117 130 G4String st = os.str(); 118 G4String st = os.str(); 131 return st; 119 return st; 132 } 120 } 133 121 134 // ------------------------------------------- << 135 G4String G4UIcmdWithADoubleAndUnit::ConvertToS 122 G4String G4UIcmdWithADoubleAndUnit::ConvertToStringWithDefaultUnit(G4double val) 136 { 123 { 137 G4UIparameter* unitParam = GetParameter(1); 124 G4UIparameter* unitParam = GetParameter(1); 138 G4String st; 125 G4String st; 139 if (unitParam->IsOmittable()) { << 126 if(unitParam->IsOmittable()) 140 st = ConvertToString(val, unitParam->GetDe << 127 { st = ConvertToString(val,unitParam->GetDefaultValue()); } 141 } << 128 else 142 else { << 129 { st = ConvertToStringWithBestUnit(val); } 143 st = ConvertToStringWithBestUnit(val); << 144 } << 145 return st; 130 return st; 146 } 131 } 147 132 148 // ------------------------------------------- << 133 void G4UIcmdWithADoubleAndUnit::SetParameterName 149 void G4UIcmdWithADoubleAndUnit::SetParameterNa << 134 (const char * theName,G4bool omittable,G4bool currentAsDefault) 150 << 151 { 135 { 152 G4UIparameter* theParam = GetParameter(0); << 136 G4UIparameter * theParam = GetParameter(0); 153 theParam->SetParameterName(theName); 137 theParam->SetParameterName(theName); 154 theParam->SetOmittable(omittable); 138 theParam->SetOmittable(omittable); 155 theParam->SetCurrentAsDefault(currentAsDefau 139 theParam->SetCurrentAsDefault(currentAsDefault); 156 } 140 } 157 141 158 // ------------------------------------------- << 159 void G4UIcmdWithADoubleAndUnit::SetDefaultValu 142 void G4UIcmdWithADoubleAndUnit::SetDefaultValue(G4double defVal) 160 { 143 { 161 G4UIparameter* theParam = GetParameter(0); << 144 G4UIparameter * theParam = GetParameter(0); 162 theParam->SetDefaultValue(defVal); 145 theParam->SetDefaultValue(defVal); 163 } 146 } 164 147 165 // ------------------------------------------- << 148 void G4UIcmdWithADoubleAndUnit::SetUnitCategory(const char * unitCategory) 166 void G4UIcmdWithADoubleAndUnit::SetUnitCategor << 167 { 149 { 168 SetUnitCandidates(UnitsList(unitCategory)); 150 SetUnitCandidates(UnitsList(unitCategory)); 169 } 151 } 170 152 171 // ------------------------------------------- << 153 void G4UIcmdWithADoubleAndUnit::SetUnitCandidates(const char * candidateList) 172 void G4UIcmdWithADoubleAndUnit::SetUnitCandida << 173 { 154 { 174 G4UIparameter* untParam = GetParameter(1); << 155 G4UIparameter * untParam = GetParameter(1); 175 G4String canList = candidateList; 156 G4String canList = candidateList; 176 untParam->SetParameterCandidates(canList); 157 untParam->SetParameterCandidates(canList); 177 } 158 } 178 159 179 // ------------------------------------------- << 160 void G4UIcmdWithADoubleAndUnit::SetDefaultUnit(const char * defUnit) 180 void G4UIcmdWithADoubleAndUnit::SetDefaultUnit << 181 { 161 { 182 G4UIparameter* untParam = GetParameter(1); << 162 G4UIparameter * untParam = GetParameter(1); 183 untParam->SetOmittable(true); 163 untParam->SetOmittable(true); 184 untParam->SetDefaultValue(defUnit); 164 untParam->SetDefaultValue(defUnit); 185 SetUnitCategory(CategoryOf(defUnit)); 165 SetUnitCategory(CategoryOf(defUnit)); 186 } 166 } >> 167 187 168