diff --git a/Framework/Algorithms/src/SampleCorrections/MCAbsorptionStrategy.cpp b/Framework/Algorithms/src/SampleCorrections/MCAbsorptionStrategy.cpp index ecc657117f2f8a470a205f5a52df80d969aabe4d..2eda78efa3aaccb7a080e0dbf3c391e59bdca6cf 100644 --- a/Framework/Algorithms/src/SampleCorrections/MCAbsorptionStrategy.cpp +++ b/Framework/Algorithms/src/SampleCorrections/MCAbsorptionStrategy.cpp @@ -23,6 +23,7 @@ namespace Algorithms { * @param sample A reference to the object defining details of the sample * @param nevents The number of Monte Carlo events used in the simulation * @param maxScatterPtAttempts The maximum number of tries to generate a random + * @param logger Logger from parent algorithm to write logging info * point within the object. */ MCAbsorptionStrategy::MCAbsorptionStrategy(const IBeamProfile &beamProfile, @@ -44,7 +45,6 @@ MCAbsorptionStrategy::MCAbsorptionStrategy(const IBeamProfile &beamProfile, * where it is detected * @param lambdaBefore Wavelength, in \f$\\A^-1\f$, before scattering * @param lambdaAfter Wavelength, in \f$\\A^-1\f$, after scattering - * @param debugString String describing debug information from calculation * @return A tuple of the <correction factor, associated error>. */ std::tuple<double, double> diff --git a/Framework/Algorithms/src/SampleCorrections/MCInteractionVolume.cpp b/Framework/Algorithms/src/SampleCorrections/MCInteractionVolume.cpp index 71bdaf1274b4c8db37d1dd7753d65e31409ebdbd..1f9ce25fec8c4e9f3c0ecb75426b5c49ef412037 100644 --- a/Framework/Algorithms/src/SampleCorrections/MCInteractionVolume.cpp +++ b/Framework/Algorithms/src/SampleCorrections/MCInteractionVolume.cpp @@ -26,6 +26,7 @@ namespace Algorithms { * @param sample A reference to a sample object that defines a valid shape * & material * @param activeRegion Restrict scattering point sampling to this region + * @param logger Logger to write debug information on scatter pt stats * @param maxScatterAttempts The maximum number of tries to generate a random * point within the object. [Default=5000] */