Combine several existing DVH objects into one object.
Usage
mergeDVH(...)
Arguments
...
DVHLstLst objects.
Value
Returns an object of class DVHLstLst.
Details
The first object determines whether the resulting object is organized by patient or by structure. Objects need not originally come from the same treatment planning system.
# NOT RUN {# pick some DVH files interactivelya <- readDVH(type="Cadplan")
# pick other DVH files interactivelyb <- readDVH(type="Eclipse")
# combine DVH datares <- mergeDVH(a, b)
res
# }