MCPcopy Create free account
hub / github.com/DOI-USGS/ISIS3 / GetNumIgnoredMeasures

Method GetNumIgnoredMeasures

isis/src/control/objs/ControlNet/ControlNet.cpp:1389–1396  ·  view source on GitHub ↗

* Return the total number of ignored measures for all control points in the * network * * @return Number of valid measures */

Source from the content-addressed store, hash-verified

1387 * @return Number of valid measures
1388 */
1389 int ControlNet::GetNumIgnoredMeasures() {
1390 int numIgnoredMeasures = 0;
1391 foreach(ControlPoint * p, *points) {
1392 numIgnoredMeasures += p->GetNumMeasures() - p->GetNumValidMeasures();
1393 }
1394
1395 return numIgnoredMeasures;
1396 }
1397
1398
1399 /**

Callers 6

TESTFunction · 0.80
TESTFunction · 0.80
TEST_FFunction · 0.80
TEST_FFunction · 0.80
TESTFunction · 0.80
TEST_FFunction · 0.80

Calls 3

foreachFunction · 0.70
GetNumMeasuresMethod · 0.45
GetNumValidMeasuresMethod · 0.45

Tested by 6

TESTFunction · 0.64
TESTFunction · 0.64
TEST_FFunction · 0.64
TEST_FFunction · 0.64
TESTFunction · 0.64
TEST_FFunction · 0.64