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

Function foreach

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

Source from the content-addressed store, hash-verified

501 QHash<QString, QStringList> imagePointIds;
502
503 foreach(QString imageSerial, images) {
504 QList<ControlPoint *> imagePoints = m_controlGraph[m_vertexMap[imageSerial]].measures.keys();
505 QStringList pointIds;
506 foreach(ControlPoint *point, imagePoints) {
507 if (!point->IsIgnored()) {
508 pointIds.append(point->GetId());
509 }
510 }
511 pointIds.sort();
512 imagePointIds.insert(imageSerial, pointIds);
513 }
514
515 foreach(QString imageSerial, images) {
516 QStringList adjacentImages = getAdjacentImages(imageSerial);

Callers 9

DeletePointMethod · 0.70
GetMaximumResidualMethod · 0.70
GetNumEditLockPointsMethod · 0.70
GetNumIgnoredMeasuresMethod · 0.70
ClearJigsawRejectedMethod · 0.70
GetNumMeasuresMethod · 0.70
GetNumValidMeasuresMethod · 0.70
GetNumValidPointsMethod · 0.70

Calls 7

GetIdMethod · 0.80
sortMethod · 0.80
compareFunction · 0.50
toStringFunction · 0.50
IsIgnoredMethod · 0.45
appendMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected