"git@code.ornl.gov:mantidproject/mantid.git" did not exist on "11757bb5007ea543d7376b4f996dbd08f37044bd"
Newer
Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
// NScD Oak Ridge National Laboratory, European Spallation Source
// & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef MANTID_ALGORITHMS_MCABSORPTIONSTRATEGYTEST_H_
#define MANTID_ALGORITHMS_MCABSORPTIONSTRATEGYTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidAlgorithms/SampleCorrections/MCAbsorptionStrategy.h"
#include "MantidAlgorithms/SampleCorrections/RectangularBeamProfile.h"
#include "MantidGeometry/Instrument/ReferenceFrame.h"
#include "MantidGeometry/Objects/BoundingBox.h"
#include "MantidKernel/Logger.h"
#include "MantidKernel/WarningSuppressions.h"
#include "MonteCarloTesting.h"
using Mantid::Algorithms::MCAbsorptionStrategy;
class MCAbsorptionStrategyTest : public CxxTest::TestSuite {
public:
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static MCAbsorptionStrategyTest *createSuite() {
return new MCAbsorptionStrategyTest();
}
static void destroySuite(MCAbsorptionStrategyTest *suite) { delete suite; }
//----------------------------------------------------------------------------
// Success cases
//----------------------------------------------------------------------------
void test_Simulation_Runs_Over_Expected_Number_Events() {
using Mantid::Kernel::V3D;
using namespace MonteCarloTesting;
using namespace ::testing;
auto testSampleSphere = MonteCarloTesting::createTestSample(
MonteCarloTesting::TestSampleType::SolidSphere);
MockBeamProfile testBeamProfile;
EXPECT_CALL(testBeamProfile, defineActiveRegion(_))
.WillOnce(Return(testSampleSphere.getShape().getBoundingBox()));
const size_t nevents(10), maxTries(100);
MCAbsorptionStrategy mcabsorb(testBeamProfile, testSampleSphere, nevents,
EXPECT_CALL(rng, nextValue())
.Times(Exactly(30))
.WillRepeatedly(Return(0.5));
const Mantid::Algorithms::IBeamProfile::Ray testRay = {V3D(-2, 0, 0),
V3D(1, 0, 0)};
EXPECT_CALL(testBeamProfile, generatePoint(_, _))
.Times(Exactly(static_cast<int>(nevents)))
.WillRepeatedly(Return(testRay));
const V3D endPos(0.7, 0.7, 1.4);
const double lambdaBefore(2.5), lambdaAfter(3.5);
double factor(0.0), error(0.0);
std::tie(factor, error) =
mcabsorb.calculate(rng, endPos, lambdaBefore, lambdaAfter);
TS_ASSERT_DELTA(1.0 / std::sqrt(nevents), error, 1e-08);
}
//----------------------------------------------------------------------------
// Failure cases
//----------------------------------------------------------------------------
void test_thin_object_fails_to_generate_point_in_sample() {
using Mantid::Algorithms::RectangularBeamProfile;
using namespace Mantid::Geometry;
using namespace Mantid::Kernel;
using namespace MonteCarloTesting;
using namespace ::testing;
auto testThinAnnulus = MonteCarloTesting::createTestSample(
MonteCarloTesting::TestSampleType::ThinAnnulus);
RectangularBeamProfile testBeamProfile(
ReferenceFrame(Y, Z, Right, "source"), V3D(), 1, 1);
const size_t nevents(10), maxTries(1);
MCAbsorptionStrategy mcabs(testBeamProfile, testThinAnnulus, nevents,
MockRNG rng;
EXPECT_CALL(rng, nextValue()).WillRepeatedly(Return(0.5));
const double lambdaBefore(2.5), lambdaAfter(3.5);
const V3D endPos(0.7, 0.7, 1.4);
TS_ASSERT_THROWS(mcabs.calculate(rng, endPos, lambdaBefore, lambdaAfter),
const std::runtime_error &)
private:
class MockBeamProfile final : public Mantid::Algorithms::IBeamProfile {
public:
using Mantid::Algorithms::IBeamProfile::Ray;
MOCK_CONST_METHOD1(generatePoint,
Ray(Mantid::Kernel::PseudoRandomNumberGenerator &));
MOCK_CONST_METHOD2(generatePoint,
Ray(Mantid::Kernel::PseudoRandomNumberGenerator &,
const Mantid::Geometry::BoundingBox &));
MOCK_CONST_METHOD1(defineActiveRegion, Mantid::Geometry::BoundingBox(
const Mantid::API::Sample &));
Mantid::Kernel::Logger g_log{"MCAbsorptionStrategyTest"};
};
#endif /* MANTID_ALGORITHMS_MCABSORPTIONSTRATEGYTEST_H_ */