--------------------------------------------------------------------
| 214 | |
| 215 | // -------------------------------------------------------------------- |
| 216 | void G4PhysicsVector::ScaleVector(const G4double factorE, |
| 217 | const G4double factorV) |
| 218 | { |
| 219 | for (std::size_t i = 0; i < numberOfNodes; ++i) |
| 220 | { |
| 221 | binVector[i] *= factorE; |
| 222 | dataVector[i] *= factorV; |
| 223 | } |
| 224 | Initialise(); |
| 225 | } |
| 226 | |
| 227 | // -------------------------------------------------------------------- |
| 228 | void G4PhysicsVector::FillSecondDerivatives(const G4SplineType stype, |
no outgoing calls
no test coverage detected