| 80 | } |
| 81 | |
| 82 | G4String G4VVisCommand::ConvertToString |
| 83 | (G4double x, G4double y, const char * unitName) |
| 84 | { |
| 85 | G4double uv = G4UIcommand::ValueOf(unitName); |
| 86 | |
| 87 | std::ostringstream oss; |
| 88 | oss << x/uv << " " << y/uv << " " << unitName; |
| 89 | return oss.str(); |
| 90 | } |
| 91 | |
| 92 | G4bool G4VVisCommand::ConvertToDoublePair(const G4String& paramString, |
| 93 | G4double& xval, |
no outgoing calls
no test coverage detected