--------------------------------------------------------------------
| 51 | |
| 52 | // -------------------------------------------------------------------- |
| 53 | void G4UIcmdWith3Vector::SetParameterName(const char* theNameX, const char* theNameY, |
| 54 | const char* theNameZ, G4bool omittable, |
| 55 | G4bool currentAsDefault) |
| 56 | { |
| 57 | G4UIparameter* theParamX = GetParameter(0); |
| 58 | theParamX->SetParameterName(theNameX); |
| 59 | theParamX->SetOmittable(omittable); |
| 60 | theParamX->SetCurrentAsDefault(currentAsDefault); |
| 61 | G4UIparameter* theParamY = GetParameter(1); |
| 62 | theParamY->SetParameterName(theNameY); |
| 63 | theParamY->SetOmittable(omittable); |
| 64 | theParamY->SetCurrentAsDefault(currentAsDefault); |
| 65 | G4UIparameter* theParamZ = GetParameter(2); |
| 66 | theParamZ->SetParameterName(theNameZ); |
| 67 | theParamZ->SetOmittable(omittable); |
| 68 | theParamZ->SetCurrentAsDefault(currentAsDefault); |
| 69 | } |
| 70 | |
| 71 | // -------------------------------------------------------------------- |
| 72 | void G4UIcmdWith3Vector::SetDefaultValue(const G4ThreeVector& vec) |
nothing calls this directly
no test coverage detected