function vol = gtMathsSumCellVolumes(vols)
% FUNCTION vol = gtMathsSumCellVolumes(vols)
%

    vol = vols{1};
    for n = 2:numel(vols)
        vol = vol + vols{n};
    end
end