functionmpath=mgetdir(M_ABBREV);%function mpath = mgetdir(M_ABBREV);%function mpath = mgetdir(abbrev);%% outputs the full path to the directory for data of type abbrev% set in m_setup%% e.g. root_sal = mgetdir('bot_sal');% or root_sal = mgetdir('M_BOT_SAL');% might give root_sal = '/local/users/pstar/cruise/data/ctd/BOTTLE_SAL';if~strncmp(M_ABBREV,'M_',2);M_ABBREV=['M_'upper(M_ABBREV)];endm_commonii=find(strcmp(M_ABBREV,MEXEC_G.MDIRLIST(:,1)));iflength(ii)==1mpath=[MEXEC_G.MEXEC_DATA_ROOT'/'MEXEC_G.MDIRLIST{ii,2}];else