get_ROI_goals.m 531 B

1234567891011121314151617
  1. function [optGoal, optGoal_beam, optGoal_idx, targetMinMax_idx] = get_ROI_goals(patient)
  2. % this is a support function for NLP_beamlet_optimizer. It returns the
  3. % goals planned for specific patients
  4. % load(['C:\010-work\003_localGit\WiscPlan_v2\optGoals\' patient, '.mat']);
  5. load(['\\Mpufs5\data_wnx1\_Data\Glioma_aus\FET_FGL005\B1\Processed\RODP_files\optGoal.mat']);
  6. optGoal = ROI_goals.optGoal;
  7. optGoal_beam = ROI_goals.optGoal_beam;
  8. optGoal_idx = ROI_goals.optGoal_idx;
  9. targetMinMax_idx = ROI_goals.targetMinMax_idx;
  10. end