--------------------------------------------------------------------
| 178 | |
| 179 | // -------------------------------------------------------------------- |
| 180 | void G4UIcmdWithADoubleAndUnit::SetDefaultUnit(const char* defUnit) |
| 181 | { |
| 182 | G4UIparameter* untParam = GetParameter(1); |
| 183 | untParam->SetOmittable(true); |
| 184 | untParam->SetDefaultValue(defUnit); |
| 185 | SetUnitCategory(CategoryOf(defUnit)); |
| 186 | } |
nothing calls this directly
no test coverage detected