Skip to content

Commit

Permalink
Merge pull request QIICR#288 from fedorov/add-modifiers-and-parameters
Browse files Browse the repository at this point in the history
BUG: read TrackingUniqueIdentifier
  • Loading branch information
fedorov authored Aug 18, 2017
2 parents baed5c7 + 59b32cf commit faa0260
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libsrc/TID1500Reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Json::Value TID1500Reader::getMeasurements() {
string2code["measurementMethod"] = CODE_SRT_MeasurementMethod;
string2code["SourceSeriesForImageSegmentation"] = CODE_DCM_SourceSeriesForSegmentation;
string2code["TrackingIdentifier"] = CODE_DCM_TrackingIdentifier;
string2code["TrackingUniqueIdentifier"] = CODE_DCM_TrackingUniqueIdentifier;
string2code["Finding"] = CODE_DCM_Finding;
string2code["FindingSite"] = CODE_SRT_FindingSite;

Expand Down Expand Up @@ -200,7 +201,7 @@ size_t TID1500Reader::gotoNamedChildNode(const DSRCodedEntryValue &conceptName,
// iterate over all nodes on this level
do {
node = cursor.getNode();
// and check for the desired concept name
// and check for the desired concept name
if ((node != NULL) && (node->getConceptName() == conceptName))
nodeID = node->getNodeID();
} while ((nodeID == 0) && cursor.gotoNext());
Expand Down

0 comments on commit faa0260

Please sign in to comment.