Skip to content
Snippets Groups Projects
Commit a05f0d58 authored by Verena Reimund's avatar Verena Reimund
Browse files

Add test parameter file

Refs #23947
parent d5da0ce5
No related branches found
No related tags found
No related merge requests found
...@@ -935,6 +935,7 @@ set ( TEST_FILES ...@@ -935,6 +935,7 @@ set ( TEST_FILES
ResizeRectangularDetectorTest.h ResizeRectangularDetectorTest.h
RingProfileTest.h RingProfileTest.h
RunCombinationHelperTest.h RunCombinationHelperTest.h
SampleLogsBehaviourTest.h
SANSCollimationLengthEstimatorTest.h SANSCollimationLengthEstimatorTest.h
SassenaFFTTest.h SassenaFFTTest.h
ScaleTest.h ScaleTest.h
......
// 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_SAMPLELOGSBEHAVIOURTEST_H_
#define MANTID_ALGORITHMS_SAMPLELOGSBEHAVIOURTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidAPI/FrameworkManager.h"
#include "MantidAlgorithms/RunCombinationHelpers/SampleLogsBehaviour.h"
#include "MantidAPI/Axis.h"
#include "MantidAPI/ITableWorkspace.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidAlgorithms/CreateSampleWorkspace.h"
#include "MantidAlgorithms/GroupWorkspaces.h"
#include "MantidGeometry/Instrument/DetectorInfo.h"
#include "MantidHistogramData/HistogramDx.h"
#include "MantidKernel/UnitFactory.h"
#include "MantidKernel/make_cow.h"
#include "MantidTestHelpers/WorkspaceCreationHelper.h"
using Mantid::Algorithms::CreateSampleWorkspace;
using Mantid::Algorithms::GroupWorkspaces;
using Mantid::Algorithms::SampleLogsBehaviour;
using namespace Mantid::API;
using namespace Mantid::DataObjects;
using namespace Mantid::HistogramData;
using namespace Mantid::Kernel;
using namespace WorkspaceCreationHelper;
class SampleLogsBehaviourTest : 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 SampleLogsBehaviourTest *createSuite() {
return new SampleLogsBehaviourTest();
}
static void destroySuite(SampleLogsBehaviourTest *suite) { delete suite; }
private:
};
#endif /* MANTID_ALGORITHMS_SAMPLELOGSBEHAVIOURTEST_H_ */
<?xml version="1.0" encoding="UTF-8" ?>
<parameter-file instrument="FIGARO" valid-from="2018-11-07 12:00:00">
<component-link name="FIGARO">
<!-- MergeRuns behavior when merging sample logs. -->
<parameter name="sample_logs_sum" type="string">
<value val="" />
</parameter>
<parameter name="sample_logs_time_series" type="string">
<value val="" />
</parameter>
<parameter name="sample_logs_warn" type="string">
<value val="" />
</parameter>
<parameter name="sample_logs_warn_tolerances" type="string">
<value val="" />
</parameter>
<parameter name="sample_logs_fail" type="string">
<value val="A, B, C" />
</parameter>
<parameter name="sample_logs_fail_tolerances" type="string">
<value val="0" />
</parameter>
<!-- ConjoinXRuns behavior when merging sample logs when using Stitch1D or Stitch1DMany. -->
<parameter name="conjoin_sample_logs_sum" type="string">
<value val="" />
</parameter>
<parameter name="conjoin_sample_logs_time_series" type="string">
<value val="" />
</parameter>
<parameter name="conjoin_sample_logs_list" type="string">
<value val="A, B, C" />
</parameter>
<parameter name="conjoin_sample_logs_warn" type="string">
<value val="" />
</parameter>
<parameter name="conjoin_sample_logs_warn_tolerances" type="string">
<value val="" />
</parameter>
<parameter name="conjoin_sample_logs_fail" type="string">
<value val="" />
</parameter>
<parameter name="conjoin_sample_logs_fail_tolerances" type="string">
<value val="" />
</parameter>
</component-link>
</parameter-file>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment