Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update doseactors.py #631

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions opengate/actors/doseactors.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ class DoseActor(VoxelDepositActor, g4.GateDoseActor):
True,
{
"doc": "This option will provide an additional output image with the squared energy (or dose) deposited per event. This image can be used to calculate the variance of the output variable, as Var(X) = E[X^2] - E[X]^2. This option enables the E[X^2] image.",
"deprecated": "Use: my_actor.user_output.square.active=True/False "
"deprecated": "Use: my_actor.square.active=True/False "
"to request uncertainty scoring of the respective quantity, "
"where 'my_actor' should be your actor object. "
"Note: activating user_output.edep_uncertainty or user_output.dose_uncertainty "
Expand All @@ -363,7 +363,7 @@ class DoseActor(VoxelDepositActor, g4.GateDoseActor):
True,
{
"doc": "This option will create an additional output image providing the uncertainty of the scored variable (dose or edep).",
"deprecated": "Use: my_actor.user_output.dose_uncertainty.active=True/False and"
"deprecated": "Use: my_actor.dose_uncertainty.active=True/False and"
"my_actor.user_output.edep_uncertainty.active=True/False "
"to request uncertainty scoring of the respective quantity, "
"where 'my_actor' should be your actor object. ",
Expand All @@ -374,7 +374,7 @@ class DoseActor(VoxelDepositActor, g4.GateDoseActor):
False,
{
"doc": "This option will enable the calculation of the dose image.",
"deprecated": "Use: my_actor.user_output.dose.active=True/False "
"deprecated": "Use: my_actor.dose.active=True/False "
"to request the actor to score dose, "
"where 'my_actor' should be your actor object. "
"By default, only the deposited energy is scored. ",
Expand Down
Loading