Skip to content

Commit

Permalink
GMP : Manage Data -- prevent data {edit,models,noise} deletion if the…
Browse files Browse the repository at this point in the history
…y were generated/required by GMP framework -- including 2DSA, -FM models & associated noises (even though they are not required by GMP report)...
  • Loading branch information
alexsav815 committed Nov 21, 2024
1 parent c3461c1 commit 7e7d1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/us_manage_data/us_data_tree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@ DbgLv(1) << "ITEM do_actions" << narows << item_exs << item_act;
QString rFilename = ddesc.description.split(".")[0].simplified();
qDebug() << "Filename of the run: " << rFilename;

if ( ddesc.recType == 1 || ddesc.recType == 2 ) // raw OR editedData
if ( ddesc.recType == 1 || ddesc.recType == 2 || ddesc.recType == 3 || ddesc.recType == 4) // all types
{
bool isRequired = check_filename_for_autoflow( rFilename );
if ( isRequired )
Expand Down

0 comments on commit 7e7d1d0

Please sign in to comment.