gEUD {RadOnc} | R Documentation |
Generalized Equivalent Uniform Dose (gEUD) Calculation
Description
This function and its associated methods calculate gEUD value(s) for a given DVH
or DVH.list
object.
Usage
## S4 method for signature 'DVH,numeric'
gEUD(x, a, dose.units = c("cGy", "Gy"))
## S4 method for signature 'DVH.list,numeric'
gEUD(x, a, dose.units = c("cGy", "Gy"))
Arguments
x |
Can represent either an object of class |
a |
Numeric value specifying tissue-specific parameter, should be negative for target structures (e.g. tumor) and positive for organs at risk. For |
dose.units |
Value specifying dose units (must be one of |
Value
Returns a numeric vector containing the gEUD values (in units of dose.units
) for all input objects.
Author(s)
Reid F. Thompson (reid.thompson@gmail.com)
References
Thieke, C., Bortfeld, T., Niemierko, A., and Nill, S. (2003) From physical dose constraints to equivalent uniform dose constraints in inverse radiotherapy planning. Med Phys 30(9), 2332-2339.
See Also
Examples
data("RadOnc")
gEUD(janedoe, 1) == unlist(janedoe$"Dmean")
gEUD(janedoe, Inf) == unlist(janedoe$"Dmax")
gEUD(janedoe, -Inf) == unlist(janedoe$"Dmin")