1function supported_labels = getSupportedLabels()
2% auxilary function
4supported_labels=mr.aux.globalVars('get','SupportedLabels');
5if isempty(supported_labels)
6 supported_labels={ ...
7 ... % data counters
8 'SLC','SEG','REP','AVG','SET','ECO','PHS','LIN','PAR','ACQ', ... % these are copied to the corresponding MDH fields on Siemens
9 'TRID', ...
10 ... % data flags
11 'NAV','REV','SMS', ... % these are copied to the corresponding MDH fields on Siemens
12 'REF', 'IMA', ... % flags for parallel imaging
13 'OFF', ... % Offline flag that labels the data, that should not be used for the online-reconstruction (on Siemens it negates the ONLINE MDH flag)
14 'NOISE', ... % flag marking noise adjust scan, for parallel imaging acceleration
15 ... % control flags/switches -- they are not affecting the data but rather the sequence itself
16 'PMC', ...
17 'NOROT','NOPOS','NOSCL', ...
18 'ONCE' ...
19 };
20 mr.aux.globalVars('set','SupportedLabels',supported_labels);
21end
23end