--------------------------------------------------------------------
| 177 | |
| 178 | // -------------------------------------------------------------------- |
| 179 | void G4UIcmdWith3VectorAndUnit::SetDefaultValue(const G4ThreeVector& vec) |
| 180 | { |
| 181 | G4UIparameter* theParamX = GetParameter(0); |
| 182 | theParamX->SetDefaultValue(vec.x()); |
| 183 | G4UIparameter* theParamY = GetParameter(1); |
| 184 | theParamY->SetDefaultValue(vec.y()); |
| 185 | G4UIparameter* theParamZ = GetParameter(2); |
| 186 | theParamZ->SetDefaultValue(vec.z()); |
| 187 | } |
| 188 | |
| 189 | // -------------------------------------------------------------------- |
| 190 | void G4UIcmdWith3VectorAndUnit::SetUnitCategory(const char* unitCategory) |
no test coverage detected