| 388 | } |
| 389 | |
| 390 | double |
| 391 | PathSeries::getDuration() |
| 392 | { |
| 393 | if (thePath == 0) |
| 394 | { |
| 395 | opserr << "WARNING -- PathSeries::getDuration() on empty Vector" << endln; |
| 396 | return 0.0; |
| 397 | } |
| 398 | return (thePath->Size()*pathTimeIncr); |
| 399 | //return (startTime + thePath->Size()*pathTimeIncr); |
| 400 | } |
| 401 | |
| 402 | double |
| 403 | PathSeries::getStartTime() { |
no test coverage detected