-
Notifications
You must be signed in to change notification settings - Fork 102
Merging plans
-
Select
File
-->Merge Plans
--> Click theBrowse
button in the pop-up window to select the plan(.mat,.bz2) to be merged. -
The UI lists all components (scans, doses and structures) in the selected plan archive. Select/deselect desired components and click
Merge
. -
To view the new (merged) scan, select it from the the
Scan
Menu.
To merge part or all of planD
into planC
, use:
planC = loadPlanC('path\to\firstplan',tempdir);
planD = loadPlanC('path\to\secondplan',tempdir);
planC = planMerge(planC, planD, scanIndV, doseIndV, structIndV, mergefileName)
planC = planMerge(planC, planD, 'all', [], [1,2,3], 'path\to\outputFileName');
-
If no other parameters beyond the two plans are provided, all doses, scans, structures, and uniformized data from
planD
are added toplanC
. -
If it exists, the scan numbers in
scanIndV
fromplanD
are merged intoplanC
. IfscanIndV
= [], no scans are merged. IfscanIndV
='all', all scans are merged. -
If it exists, the dose numbers in
doseIndV
fromplanD
are merged intoplanC
. IfdoseIndV
= [], no doses are merged. IfdoseIndV
= 'all', all doses are merged. -
If it exists, the dose numbers in
doseIndV
fromplanD
are merged intoplanC
. IfdoseIndV
= [], no doses are merged. IfdoseIndV
='all' all doses are merged.