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

Method GetLogData

isis/src/control/objs/ControlMeasure/ControlMeasure.cpp:773–788  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

771
772
773 ControlMeasureLogData ControlMeasure::GetLogData(long dataType) const {
774 int foundIndex = 0;
775 ControlMeasureLogData::NumericLogDataType typedDataType =
776 (ControlMeasureLogData::NumericLogDataType)dataType;
777
778 while (foundIndex < p_loggedData->size()) {
779 const ControlMeasureLogData &logData = p_loggedData->at(foundIndex);
780 if (logData.GetDataType() == typedDataType) {
781 return logData;
782 }
783
784 foundIndex ++;
785 }
786
787 return ControlMeasureLogData(typedDataType);
788 }
789
790
791 /**

Callers 15

GetStatisticMethod · 0.80
mainFunction · 0.80
IsisMainFunction · 0.80
IsisMainFunction · 0.80
pointregFunction · 0.80
computeStatsMethod · 0.80
calculateStrengthMethod · 0.80
filterMethod · 0.80
loadMeasureTableMethod · 0.80
updateLeftMeasureInfoMethod · 0.80

Calls 4

atMethod · 0.80
GetDataTypeMethod · 0.80
sizeMethod · 0.45

Tested by 1

mainFunction · 0.64