--------------------------------------------------------------------
| 147 | |
| 148 | // -------------------------------------------------------------------- |
| 149 | void G4UIcmdWithADoubleAndUnit::SetParameterName(const char* theName, G4bool omittable, |
| 150 | G4bool currentAsDefault) |
| 151 | { |
| 152 | G4UIparameter* theParam = GetParameter(0); |
| 153 | theParam->SetParameterName(theName); |
| 154 | theParam->SetOmittable(omittable); |
| 155 | theParam->SetCurrentAsDefault(currentAsDefault); |
| 156 | } |
| 157 | |
| 158 | // -------------------------------------------------------------------- |
| 159 | void G4UIcmdWithADoubleAndUnit::SetDefaultValue(G4double defVal) |
no test coverage detected