Skip to content

Commit

Permalink
Added doi field to datafile table. Refs #8538.
Browse files Browse the repository at this point in the history
  • Loading branch information
jawrainey committed Apr 9, 2014
1 parent 629055c commit b990be3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Code/Mantid/Framework/ICat/src/ICat4/ICat4Catalog.cpp
Expand Up @@ -578,6 +578,7 @@ namespace Mantid
outputws->addColumn("long64","File size(bytes)");
outputws->addColumn("str","File size");
outputws->addColumn("str","Description");
outputws->addColumn("str","doi");
}

std::vector<xsd__anyType*>::const_iterator iter;
Expand All @@ -601,6 +602,7 @@ namespace Mantid
savetoTableWorkspace(&fileSize, table);

if (datafile->description) savetoTableWorkspace(datafile->description, table);
savetoTableWorkspace(datafile->doi, table);
}
else
{
Expand Down

0 comments on commit b990be3

Please sign in to comment.