| Summary: | typo in boundary check of EstimateSurfaceArea | ||
|---|---|---|---|
| Product: | Geant4 | Reporter: | Henrik Arlinghaus <arlinghaus> |
| Component: | geometry/management | Assignee: | Gabriele Cosmo <Gabriele.Cosmo> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | ||
| Priority: | P5 | ||
| Version: | 9.0 | ||
| Hardware: | All | ||
| OS: | All | ||
Thanks for spotting this. The problem is fixed in tag "geommng-V09-00-01" and will be included in the next release or bug-fix. |
In the function EstimateSurfaceArea the user given statistic is improperly overridden if the user wishes to use between 101 and 999 points. // limits if(nStat < 1000) { nStat = 100; } should be // limits if(nStat < 100) { nStat = 100; }