Newer
Older
#ifndef MANTID_DATAHANDLING_LOADFULLPROFRESOLUTIONTEST_H_
#define MANTID_DATAHANDLING_LOADFULLPROFRESOLUTIONTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidDataHandling/LoadFullprofResolution.h"
#include "MantidDataObjects/TableWorkspace.h"
#include "MantidAPI/TableRow.h"
#include "MantidDataHandling/LoadInstrument.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidGeometry/Instrument.h"
#include "MantidGeometry/Instrument/Component.h"
#include "MantidGeometry/Instrument/FitParameter.h"
using Mantid::DataHandling::LoadFullprofResolution;
using namespace Mantid;
using namespace Mantid::DataHandling;
using namespace Mantid::DataObjects;
using namespace Mantid::Kernel;
using namespace Mantid::API;
using namespace std;
class LoadFullprofResolutionTest : 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 LoadFullprofResolutionTest *createSuite() { return new LoadFullprofResolutionTest(); }
static void destroySuite( LoadFullprofResolutionTest *suite ) { delete suite; }
//----------------------------------------------------------------------------------------------
/** Test import from a 1-bank irf file
*/
void test_1BankCase()
{
// 1. Generate file
string filename("Test1Bank.irf");
generate1BankIrfFile(filename);
// 2. Load
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "1");
alg.setProperty("OutputTableWorkspace", "TestBank1Table");
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
TableWorkspace_sptr outws = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestBank1Table"));
TS_ASSERT(outws);
TS_ASSERT_EQUALS(outws->columnCount(), 2);
TS_ASSERT_EQUALS(outws->rowCount(), getExpectedNumberOfRows() );
map<string, double> parammap;
parseTableWorkspace(outws, parammap);
TS_ASSERT_EQUALS(parammap.count("Zero"),1);
TS_ASSERT_EQUALS(parammap.count("Sig2"),1);
TS_ASSERT_EQUALS(parammap.count("Beta0t"),1);
TS_ASSERT_DELTA(parammap["Zero"], -1.00, 0.0001);
TS_ASSERT_DELTA(parammap["Sig2"], sqrt(514.546), 0.0001);
TS_ASSERT_DELTA(parammap["Beta0t"], 85.918922, 0.00001);
// 4. Clean
AnalysisDataService::Instance().remove("TestBank1Table");
Poco::File("Test1Bank.irf").remove();
return;
}
//----------------------------------------------------------------------------------------------
/** Test import from a 1-bank irf file
*/
void test_2BankCase()
{
// 1. Generate file
string filename("Test2Bank.irf");
generate2BankIrfFile(filename);
// 2. Load
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "3");
alg.setProperty("OutputTableWorkspace", "TestBank3Table");
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
TableWorkspace_sptr outws = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestBank3Table"));
TS_ASSERT(outws);
TS_ASSERT_EQUALS(outws->columnCount(), 2);
TS_ASSERT_EQUALS(outws->rowCount(), getExpectedNumberOfRows());
map<string, double> parammap;
parseTableWorkspace(outws, parammap);
TS_ASSERT_EQUALS(parammap.count("Dtt1"),1);
TS_ASSERT_EQUALS(parammap.count("Sig1"),1);
TS_ASSERT_EQUALS(parammap.count("Alph0t"),1);
TS_ASSERT_DELTA(parammap["Dtt1"], 22586.10156, 0.0001);
TS_ASSERT_DELTA(parammap["Sig1"], sqrt(10.00), 0.0001);
TS_ASSERT_DELTA(parammap["Alph0t"], 86.059, 0.00001);
// 4. Clean
AnalysisDataService::Instance().remove("TestBank3Table");
Poco::File("Test2Bank.irf").remove();
//----------------------------------------------------------------------------------------------
/** Test import all banks from a 2-bank irf file
** Also test UseBankIDsInFile property
*/
void test_LoadAllBankCase()
{
// Generate file
string filename("Test2Bank.irf");
generate2BankIrfFile(filename);
// Init LoadFullprofResolution
LoadFullprofResolution alg;
alg.initialize();
// Set up
alg.setProperty("Filename", filename);
alg.setProperty("OutputTableWorkspace", "TestBank4Table");
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check output workspace
TableWorkspace_sptr outws = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestBank4Table"));
TS_ASSERT(outws);
// Check table workspace size
TS_ASSERT_EQUALS(outws->columnCount(), 3);
TS_ASSERT_EQUALS(outws->rowCount(), getExpectedNumberOfRows());
// Verify value (including bank number)
map<string, double> parammap1;
parseTableWorkspace(outws, parammap1);
TS_ASSERT_DELTA(parammap1["BANK"], 1.0, 0.0001);
TS_ASSERT_DELTA(parammap1["Dtt1"], 22580.59157, 0.0001);
TS_ASSERT_DELTA(parammap1["Sig1"], sqrt(0.00044), 0.0001);
TS_ASSERT_DELTA(parammap1["Alph0t"], 0.010156, 0.00001);
map<string, double> parammap2;
parseTableWorkspace2(outws, parammap2);
TS_ASSERT_DELTA(parammap2["BANK"], 3.0, 0.0001);
TS_ASSERT_DELTA(parammap2["Dtt1"], 22586.10156, 0.0001);
TS_ASSERT_DELTA(parammap2["Sig1"], sqrt(10.00), 0.0001);
TS_ASSERT_DELTA(parammap2["Alph0t"], 86.059, 0.00001);
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Test bank ID with UseBankIDsInFile set false
alg.setProperty("OutputTableWorkspace", "TestBank4TableFalse");
alg.setProperty("UseBankIDsInFile", false);
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check output workspace
TableWorkspace_sptr outwsFalse = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestBank4TableFalse"));
TS_ASSERT(outwsFalse);
// Check table workspace size
TS_ASSERT_EQUALS(outwsFalse->columnCount(), 3);
TS_ASSERT_EQUALS(outwsFalse->rowCount(), getExpectedNumberOfRows());
// Verify ID of second bank
map<string, double> parammapFalse;
parseTableWorkspace2(outwsFalse, parammapFalse);
TS_ASSERT_DELTA(parammapFalse["BANK"], 2.0, 0.0001);
// Test bank ID with UseBankIDsInFile set true
alg.setProperty("OutputTableWorkspace", "TestBank4TableTrue");
alg.setProperty("UseBankIDsInFile", true);
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check output workspace
TableWorkspace_sptr outwsTrue = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestBank4TableTrue"));
TS_ASSERT(outwsTrue);
// Check table workspace size
TS_ASSERT_EQUALS(outwsTrue->columnCount(), 3);
TS_ASSERT_EQUALS(outwsTrue->rowCount(), getExpectedNumberOfRows());
// Verify ID of second bank
map<string, double> parammapTrue;
parseTableWorkspace2(outwsTrue, parammapTrue);
TS_ASSERT_DELTA(parammapTrue["BANK"], 3.0, 0.0001);
// Clean
AnalysisDataService::Instance().remove("TestBank4Table");
AnalysisDataService::Instance().remove("TestBank4TableFalse");
AnalysisDataService::Instance().remove("TestBank4TableTrue");
Poco::File("Test2Bank.irf").remove();
return;
}
//----------------------------------------------------------------------------------------------
/** Test import all banks from a 3-bank irf file
*/
void test_Load3BankCase()
{
// Generate file
string filename("Test3Bank.irf");
generate3BankIrfFile(filename);
// Init LoadFullprofResolution
LoadFullprofResolution alg;
alg.initialize();
// Set up
alg.setProperty("Filename", filename);
alg.setProperty("OutputTableWorkspace", "TestBank5Table");
alg.setPropertyValue("Banks", "2-4");
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check output workspace
TableWorkspace_sptr outws = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestBank5Table"));
TS_ASSERT(outws);
// Check table workspace size
TS_ASSERT_EQUALS(outws->columnCount(), 4);
TS_ASSERT_EQUALS(outws->rowCount(), getExpectedNumberOfRows());
// Verify value
map<string, double> parammap1;
parseTableWorkspace(outws, parammap1);
TS_ASSERT_DELTA(parammap1["Dtt1"], 22580.59157, 0.0001);
TS_ASSERT_DELTA(parammap1["Sig1"], sqrt(0.00044), 0.0001);
TS_ASSERT_DELTA(parammap1["Alph0t"], 0.010156, 0.00001);
// Clean
AnalysisDataService::Instance().remove("TestBank5Table");
Poco::File("Test3Bank.irf").remove();
return;
}
//----------------------------------------------------------------------------------------------
/** Test import of ALFBE, GAMMA and SIGMA parameters
* and check they are given their expected names.
*/
void test_ags_parameters()
{
// 1. Generate file
string filename("TestAGS.irf");
generate1BankIrfFile(filename);
// 2. Load
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "1");
alg.setProperty("OutputTableWorkspace", "TestAGSTable");
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
TableWorkspace_sptr outws = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestAGSTable"));
TS_ASSERT(outws);
// 3. Verify names
map<string, double> parammap;
parseTableWorkspace(outws, parammap);
// 3a. ALFBE
TS_ASSERT_EQUALS(parammap.count("Alph0"),1);
TS_ASSERT_EQUALS(parammap.count("Beta0"),1);
TS_ASSERT_EQUALS(parammap.count("Alph1"),1);
TS_ASSERT_EQUALS(parammap.count("Beta1"),1);
// 3b. GAMMA
TS_ASSERT_EQUALS(parammap.count("Gam2"),1);
TS_ASSERT_EQUALS(parammap.count("Gam1"),1);
TS_ASSERT_EQUALS(parammap.count("Gam0"),1);
// 3c. SIGMA
TS_ASSERT_EQUALS(parammap.count("Sig2"),1);
TS_ASSERT_EQUALS(parammap.count("Sig1"),1);
TS_ASSERT_EQUALS(parammap.count("Sig0"),1);
// 4. Clean
AnalysisDataService::Instance().remove("TestAGSTable");
Poco::File("TestAGS.irf").remove();
return;
}
//----------------------------------------------------------------------------------------------
/** Test that when the workspace property is used
** that parameters are correctly loaded into this workspace
* The GEM instrument is used
*/
void test_workspace()
{
// Generate file
string filename("FullprofResolutionTest_TestWorkspace.irf");
generate1BankIrfFile(filename);
// Load workspace group wsName with one workspace
load_GEM(1,"LoadFullprofResolutionWorkspace");
// Set up algorithm to load into the workspace
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "1");
alg.setProperty("Workspace", wsName);
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check parameters in workspace
// The workspace is a workspace group with one member corresponding to the one bank in the IRF file
WorkspaceGroup_sptr gws;
gws = AnalysisDataService::Instance().retrieveWS<WorkspaceGroup>(wsName);
Workspace_sptr wsi = gws->getItem(0) ;
auto ws = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap = ws->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr = ws->getInstrument();
Mantid::Geometry::Parameter_sptr alpha0Param = paramMap.get(&(*instr), "Alpha0", "fitting");
TS_ASSERT(alpha0Param);
if(alpha0Param)
{
const Mantid::Geometry::FitParameter& fitParam = alpha0Param->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 0.000008, 0.0000001);
Mantid::Geometry::Parameter_sptr beta0Param = paramMap.get(&(*instr), "Beta0", "fitting");
TS_ASSERT(beta0Param);
if(beta0Param)
{
const Mantid::Geometry::FitParameter& fitParam = beta0Param->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 6.251096, 0.0000001);
Mantid::Geometry::Parameter_sptr alpha1Param = paramMap.get(&(*instr), "Alpha1", "fitting");
TS_ASSERT(alpha1Param);
if(alpha1Param)
{
const Mantid::Geometry::FitParameter& fitParam = alpha1Param->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 0.0, 0.0000001);
}
Mantid::Geometry::Parameter_sptr beta1Param = paramMap.get(&(*instr), "Kappa", "fitting");
TS_ASSERT(beta1Param);
if(beta0Param)
{
const Mantid::Geometry::FitParameter& fitParam = beta1Param->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 0.0, 0.0000001);
}
Mantid::Geometry::Parameter_sptr sigmaSqParam = paramMap.get(&(*instr), "SigmaSquared", "fitting");
if(sigmaSqParam)
{
const Mantid::Geometry::FitParameter& fitParam = sigmaSqParam->value<Mantid::Geometry::FitParameter>();
double formulaValueCantreAt0 = fitParam.getValue( 0.0 ); // Value for centre=0.0
TS_ASSERT_DELTA( formulaValueCantreAt0, 0.355, 0.0000001);
double formulaValueCantreAt10 = fitParam.getValue( 10.0 ); // Value for centre=10.0
TS_ASSERT_DELTA( formulaValueCantreAt10, 0.399, 0.0000001);
}
Mantid::Geometry::Parameter_sptr gammaParam = paramMap.get(&(*instr), "Gamma", "fitting");
TS_ASSERT(gammaParam);
if(gammaParam)
{
const Mantid::Geometry::FitParameter& fitParam = gammaParam->value<Mantid::Geometry::FitParameter>();
double formulaValueCantreAt0 = fitParam.getValue( 0.0 ); // Value for centre=0.0
TS_ASSERT_DELTA( formulaValueCantreAt0, 0.0, 0.0000001);
double formulaValueCantreAt10 = fitParam.getValue( 10.0 ); // Value for centre=10.0
TS_ASSERT_DELTA( formulaValueCantreAt10, 0.0, 0.0000001);
}
Poco::File(filename).remove();
//----------------------------------------------------------------------------------------------
/** Test that when the workspace property is used with multiple workspaces
** that parameters are correctly loaded into this workspaces, according to the fullprof banks.
* The GEM instrument is used
*/
void test_multiworkspace()
{
// Generate file
string filename("TestMultiWorskpace.irf");
generate3BankIrfFile(filename);
// Load workspace group wsName with 3 workspaces
load_GEM(3,"LoadFullprofResolutionMultiWorkspace");
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
// Set up algorithm to load into the workspace
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "2-4");
alg.setProperty("Workspace", wsName);
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check parameters in workspace
// The workspace is a workspace group with three members corresponding to the three banks in the IRF file
WorkspaceGroup_sptr gws;
gws = AnalysisDataService::Instance().retrieveWS<WorkspaceGroup>(wsName);
// 1st Workspace - bank 2
Workspace_sptr wsi = gws->getItem(0) ;
auto ws1 = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap1 = ws1->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr1 = ws1->getInstrument();
// 2nd Workspace - bank 3
wsi = gws->getItem(1) ;
auto ws2 = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap2 = ws2->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr2 = ws2->getInstrument();
// 3rd Workspace - bank 4
wsi = gws->getItem(2) ;
auto ws3 = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap3 = ws3->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr3 = ws3->getInstrument();
// Check Beta0 parameter in each workspace
Mantid::Geometry::Parameter_sptr beta0Param1 = paramMap1.get(&(*instr1), "Beta0", "fitting");
TS_ASSERT(beta0Param1);
if(beta0Param1)
{
const Mantid::Geometry::FitParameter& fitParam = beta0Param1->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 6.251096, 0.0000001);
}
Mantid::Geometry::Parameter_sptr beta0Param2 = paramMap2.get(&(*instr2), "Beta0", "fitting");
TS_ASSERT(beta0Param2);
if(beta0Param2)
{
const Mantid::Geometry::FitParameter& fitParam = beta0Param2->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 7.251096, 0.0000001);
}
Mantid::Geometry::Parameter_sptr beta0Param3 = paramMap3.get(&(*instr3), "Beta0", "fitting");
TS_ASSERT(beta0Param3);
if(beta0Param3)
{
const Mantid::Geometry::FitParameter& fitParam = beta0Param3->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 3.012, 0.0000001);
}
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
// --- Test WorkspacesForBanks property ---
// we do it here to avoid recreating the workspace group again, which takes time
LoadFullprofResolution alg2;
alg2.initialize();
alg2.setProperty("Filename", filename);
alg2.setPropertyValue("Banks", "4,2");
alg2.setProperty("Workspace", wsName);
alg2.setProperty("WorkspacesForBanks","1,3");
// Execute
TS_ASSERT_THROWS_NOTHING(alg2.execute());
TS_ASSERT(alg2.isExecuted());
// Check parameters in workspaces of group
// 1st Workspace - bank 4
wsi = gws->getItem(0) ;
auto ws01 = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap01 = ws01->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr01 = ws01->getInstrument();
// 3rd Workspace - bank 2
wsi = gws->getItem(2) ;
auto ws03 = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap03 = ws03->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr03 = ws03->getInstrument();
// Check Beta0 parameter in each workspace
Mantid::Geometry::Parameter_sptr beta0Param01 = paramMap01.get(&(*instr01), "Beta0", "fitting");
TS_ASSERT(beta0Param01);
if(beta0Param01)
{
const Mantid::Geometry::FitParameter& fitParam = beta0Param01->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 3.012, 0.0000001);
}
Mantid::Geometry::Parameter_sptr beta0Param03 = paramMap03.get(&(*instr03), "Beta0", "fitting");
TS_ASSERT(beta0Param03);
if(beta0Param03)
{
const Mantid::Geometry::FitParameter& fitParam = beta0Param03->value<Mantid::Geometry::FitParameter>();
TS_ASSERT_DELTA( boost::lexical_cast<double>(fitParam.getFormula()), 6.251096, 0.0000001);
}
// Clean
Poco::File("TestMultiWorskpace.irf").remove();
}
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
//----------------------------------------------------------------------------------------------
/** Test that when the workspace property is used
** that parameters are correctly loaded into this workspace
* for the BackToBackExponential function
*/
void test_workspace_BBX()
{
// Generate file
string filename("TestWorskpaceBBX.irf");
generate1BankIrfBBXFile(filename);
// Load workspace group wsName with one workspace
load_GEM(1,"LoadFullprofResolutionBBXWorkspace");
// Set up algorithm to load into the workspace
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "2");
alg.setProperty("Workspace", wsName);
alg.setProperty("WorkspacesForBanks","1");
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Check parameters in workspace
// The workspace is a workspace group with one member corresponding to the one bank in the IRF file
WorkspaceGroup_sptr gws;
gws = AnalysisDataService::Instance().retrieveWS<WorkspaceGroup>(wsName);
Workspace_sptr wsi = gws->getItem(0) ;
auto ws = boost::dynamic_pointer_cast<MatrixWorkspace>(wsi);
Mantid::Geometry::ParameterMap& paramMap = ws->instrumentParameters();
boost::shared_ptr<const Mantid::Geometry::Instrument> instr = ws->getInstrument();
Mantid::Geometry::Parameter_sptr S_Param = paramMap.get(&(*instr), "S", "fitting");
TS_ASSERT(S_Param);
if(S_Param)
{
const Mantid::Geometry::FitParameter& fitParam = S_Param->value<Mantid::Geometry::FitParameter>();
// Check for three values of centre
double formulaValueCantreAt0 = fitParam.getValue( 0.0 ); // Value for centre=0.0
TS_ASSERT_DELTA( formulaValueCantreAt0, 0.0707, 0.0001);
double formulaValueCantreAt10 = fitParam.getValue( 10.0 ); // Value for centre=10.0
TS_ASSERT_DELTA( formulaValueCantreAt10, 1805.0819, 0.0001);
double formulaValueCantreAt20 = fitParam.getValue( 20.0 ); // Value for centre=20.0
TS_ASSERT_DELTA( formulaValueCantreAt20, 6891.6009, 0.0001);
}
Mantid::Geometry::Parameter_sptr A_Param = paramMap.get(&(*instr), "A", "fitting");
TS_ASSERT(A_Param);
if(A_Param)
{
const Mantid::Geometry::FitParameter& fitParam = A_Param->value<Mantid::Geometry::FitParameter>();
// Check for two values of centre
double formulaValueCantreAt10 = fitParam.getValue( 10.0 ); // Value for centre=10.0
TS_ASSERT_DELTA( formulaValueCantreAt10, 0.0097, 0.0001);
double formulaValueCantreAt20 = fitParam.getValue( 20.0 ); // Value for centre=20.0
TS_ASSERT_DELTA( formulaValueCantreAt20, 0.0049, 0.0001);
}
Mantid::Geometry::Parameter_sptr B_Param = paramMap.get(&(*instr), "B", "fitting");
TS_ASSERT(B_Param);
if(B_Param)
{
const Mantid::Geometry::FitParameter& fitParam = B_Param->value<Mantid::Geometry::FitParameter>();
// Check for two values of centre
double formulaValueCantreAt1 = fitParam.getValue( 1.0 ); // Value for centre=1.0
TS_ASSERT_DELTA( formulaValueCantreAt1, 0.0310, 0.0001);
double formulaValueCantreAt2 = fitParam.getValue( 2.0 ); // Value for centre=2.0
TS_ASSERT_DELTA( formulaValueCantreAt2, 0.0251, 0.0001);
}
// Clean
Poco::File("TestWorskpaceBBX.irf").remove();
}
//----------------------------------------------------------------------------------------------
/** Test that algorithm does not run,
* if neither the OutputTableWorkspace nor Workspace
** property is set.
*/
void test_no_output()
{
// Generate file
string filename("TestNoOutput.irf");
generate1BankIrfFile(filename);
// Set up algorithm without specifying OutputTableWorkspace or Workspace
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "1");
// Execute and check that execution failed
alg.execute();
TS_ASSERT(!alg.isExecuted());
// Clean
Poco::File("TestNoOutput.irf").remove();
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
//----------------------------------------------------------------------------------------------
/** Test that the number from the NPROF is read correctly
** and has correct name in table.
*/
void test_nprof()
{
// Generate file
string filename("TestNPROF.irf");
generate3BankIrfFile(filename);
// Init LoadFullprofResolution
LoadFullprofResolution alg;
alg.initialize();
// Set up
alg.setProperty("Filename", filename);
alg.setProperty("OutputTableWorkspace", "TestNPROFTable");
// Execute
TS_ASSERT_THROWS_NOTHING(alg.execute());
TS_ASSERT(alg.isExecuted());
// Retrieve output
TableWorkspace_sptr outws = boost::dynamic_pointer_cast<TableWorkspace>(
AnalysisDataService::Instance().retrieve("TestNPROFTable"));
TS_ASSERT(outws);
// Verify NPROF exists and has a value of 10 for first two banks
map<string, double> parammap1;
parseTableWorkspace(outws, parammap1); // 1st bank
map<string, double> parammap2;
parseTableWorkspace2(outws, parammap2); // 2nd bank
TS_ASSERT_EQUALS(parammap1.count("NPROF"),1);
TS_ASSERT_DELTA(parammap1["NPROF"], 10.0, 0.0001);
TS_ASSERT_EQUALS(parammap2.count("NPROF"),1);
TS_ASSERT_DELTA(parammap2["NPROF"], 10.0, 0.0001);
// Clean
AnalysisDataService::Instance().remove("TestNPROFTable");
Poco::File("TestNPROF.irf").remove();
}
//----------------------------------------------------------------------------------------------
/** Test Exception
*/
void test_WrongInputBankCase()
{
// 1. Generate file
string filename("Test2Bank.irf");
generate2BankIrfFile(filename);
// 2. Load
LoadFullprofResolution alg;
alg.initialize();
alg.setProperty("Filename", filename);
alg.setPropertyValue("Banks", "2");
alg.setProperty("OutputTableWorkspace", "TestBank3Table");
alg.execute();
// 3. Check if failed
TS_ASSERT(!alg.isExecuted());
// 4. Clean
Poco::File("Test2Bank.irf").remove();
return;
}
//----------------------------------------------------------------------------------------------
/** Parse a TableWorkspace to a map
*/
void parseTableWorkspace(TableWorkspace_sptr tablews, map<string, double>& parammap)
{
parammap.clear();
size_t numrows = tablews->rowCount();
for (size_t i = 0; i < numrows; ++i)
{
TableRow row = tablews->getRow(i);
double value;
string name;
row >> name >> value;
parammap.insert(make_pair(name, value));
}
return;
}
//----------------------------------------------------------------------------------------------
/** Parse a TableWorkspace's 2nd bank to a map
*/
void parseTableWorkspace2(TableWorkspace_sptr tablews, map<string, double>& parammap)
{
parammap.clear();
size_t numrows = tablews->rowCount();
for (size_t i = 0; i < numrows; ++i)
{
TableRow row = tablews->getRow(i);
double value1, value2;
string name;
row >> name >> value1 >> value2;
parammap.insert(make_pair(name, value2));
}
return;
}
//----------------------------------------------------------------------------------------------
/** Generate a GEM workspace group with specified number of workspaces.
void load_GEM( size_t numberOfWorkspaces, std::string workspaceName)
{
LoadInstrument loaderGEM;
TS_ASSERT_THROWS_NOTHING(loaderGEM.initialize());
//create a workspace with some sample data
WorkspaceGroup_sptr gws(new API::WorkspaceGroup);
for (size_t i=0; i < numberOfWorkspaces; ++i)
{
Workspace_sptr ws = WorkspaceFactory::Instance().create("Workspace2D",1,1,1);
Workspace2D_sptr ws2D = boost::dynamic_pointer_cast<Workspace2D>(ws);
gws->addWorkspace( ws2D );
}
//put this workspace in the data service
TS_ASSERT_THROWS_NOTHING(AnalysisDataService::Instance().add(workspaceName, gws));
// Path to test input file
loaderGEM.setPropertyValue("Filename", "GEM_Definition.xml");
//inputFile = loaderIDF2.getPropertyValue("Filename");
loaderGEM.setPropertyValue("Workspace", workspaceName);
TS_ASSERT_THROWS_NOTHING(loaderGEM.execute());
TS_ASSERT( loaderGEM.isExecuted() );
//----------------------------------------------------------------------------------------------
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
/** Generate a 1 bank .irf file
*/
void generate1BankIrfFile(string filename)
{
ofstream ofile;
ofile.open(filename.c_str());
if (ofile.is_open())
{
ofile << " Instrumental resolution function for POWGEN/SNS A Huq 2013-12-03 ireso: 6 \n";
ofile << "! To be used with function NPROF=10 in FullProf (Res=6) \n";
ofile << "! ---------------------------------------------- Bank 1 CWL = 0.5330A \n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 10 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 5000.2300 4.0002 51000.0000 \n";
ofile << "! Zero Dtt1 \n";
ofile << "ZD2TOF -1.00 22580.59157 \n";
ofile << "! Zerot Dtt1t Dtt2t x-cross Width \n";
ofile << "ZD2TOT 933.50214 22275.21084 1.0290 0.0000002 5.0957 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 90.00 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 514.546 0.00044 0.355 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 0.000 0.000 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 0.000008 6.251096 0.000000 0.000000 \n";
ofile << "! alph0t beta0t alph1t beta1t \n";
ofile << "ALFBT 0.010156 85.918922 0.000000 0.000000 \n";
ofile << "END \n";
ofile.close();
}
else
{
throw runtime_error("Unable to open file to write.");
}
return;
}
//----------------------------------------------------------------------------------------------
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
/** Generate a 2 bank .irf file
*/
void generate2BankIrfFile(string filename)
{
ofstream ofile;
ofile.open(filename.c_str());
if (ofile.is_open())
{
ofile << " Instrumental resolution function for POWGEN/SNS A Huq 2013-12-03 ireso: 6 \n";
ofile << "! To be used with function NPROF=10 in FullProf (Res=6) \n";
ofile << "! ---------------------------------------------- Bank 1 CWL = 0.5330A \n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 10 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 5000.2300 4.0002 51000.0000 \n";
ofile << "! Zero Dtt1 \n";
ofile << "ZD2TOF -1.00 22580.59157 \n";
ofile << "! Zerot Dtt1t Dtt2t x-cross Width \n";
ofile << "ZD2TOT 933.50214 22275.21084 1.0290 0.0000002 5.0957 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 90.00 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 514.546 0.00044 0.355 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 0.000 0.000 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 0.000008 6.251096 0.000000 0.000000 \n";
ofile << "! alph0t beta0t alph1t beta1t \n";
ofile << "ALFBT 0.010156 85.918922 0.000000 0.000000 \n";
ofile << "END \n";
ofile << "! ---------------------------------------------- Bank 3 CWL = 1.3330A\n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 10 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 9800.0000 5.0000 86000.0000 \n";
ofile << "! Zero Dtt1 \n";
ofile << "ZD2TOF 0.00 22586.10156 \n";
ofile << "! Zerot Dtt1t Dtt2t x-cross Width \n";
ofile << "ZD2TOT -42.76068 22622.76953 0.30 0.3560 2.4135 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 90.000 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 72.366 10.000 0.000 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 2.742 0.000 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 1.500 3.012 5.502 9.639 \n";
ofile << "! alph0t beta0t alph1t beta1t \n";
ofile << "ALFBT 86.059 96.487 13.445 3.435 \n";
ofile.close();
}
else
{
throw runtime_error("Unable to open file to write.");
}
return;
}
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
/** Generate a 3 bank .irf file
*/
void generate3BankIrfFile(string filename)
{
ofstream ofile;
ofile.open(filename.c_str());
if (ofile.is_open())
{
ofile << " Instrumental resolution function for POWGEN/SNS A Huq 2013-12-03 ireso: 6 \n";
ofile << "! To be used with function NPROF=10 in FullProf (Res=6) \n";
ofile << "! ---------------------------------------------- Bank 2 CWL = 0.5330A \n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 10 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 5000.2300 4.0002 51000.0000 \n";
ofile << "! Zero Dtt1 \n";
ofile << "ZD2TOF -1.00 22580.59157 \n";
ofile << "! Zerot Dtt1t Dtt2t x-cross Width \n";
ofile << "ZD2TOT 933.50214 22275.21084 1.0290 0.0000002 5.0957 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 90.00 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 514.546 0.00044 0.355 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 0.000 0.000 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 0.000008 6.251096 0.000000 0.000000 \n";
ofile << "! alph0t beta0t alph1t beta1t \n";
ofile << "ALFBT 0.010156 85.918922 0.000000 0.000000 \n";
ofile << "END \n";
ofile << "! ---------------------------------------------- Bank 3 CWL = 0.5339A \n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 10 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 5000.2300 4.0002 51000.0000 \n";
ofile << "! Zero Dtt1 \n";
ofile << "ZD2TOF -1.00 22580.59157 \n";
ofile << "! Zerot Dtt1t Dtt2t x-cross Width \n";
ofile << "ZD2TOT 933.50214 22275.21084 1.0290 0.0000002 5.0957 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 90.00 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 514.546 0.00044 0.355 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 0.000 0.000 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 0.000008 7.251096 0.000000 0.000000 \n";
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
ofile << "! alph0t beta0t alph1t beta1t \n";
ofile << "ALFBT 0.010156 85.918922 0.000000 0.000000 \n";
ofile << "END \n";
ofile << "! ---------------------------------------------- Bank 4 CWL = 1.3330A\n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 10 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 9800.0000 5.0000 86000.0000 \n";
ofile << "! Zero Dtt1 \n";
ofile << "ZD2TOF 0.00 22586.10156 \n";
ofile << "! Zerot Dtt1t Dtt2t x-cross Width \n";
ofile << "ZD2TOT -42.76068 22622.76953 0.30 0.3560 2.4135 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 90.000 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 72.366 10.000 0.000 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 2.742 0.000 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 1.500 3.012 5.502 9.639 \n";
ofile << "! alph0t beta0t alph1t beta1t \n";
ofile << "ALFBT 86.059 96.487 13.445 3.435 \n";
ofile.close();
}
else
{
throw runtime_error("Unable to open file to write.");
}
return;
}
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//----------------------------------------------------------------------------------------------
/** Generate a 1 bank .irf file for BackToBackExponential fitting function
*/
void generate1BankIrfBBXFile(string filename)
{
ofstream ofile;
ofile.open(filename.c_str());
if (ofile.is_open())
{
ofile << " Instrumental resolution function for HRPD/ISIS L. Chapon 12/2003 ireso: 5 \n";
ofile << "! To be used with function NPROF=9 in FullProf (Res=5) \n";
ofile << "! ----------------------------------------------------- Bank 2 \n";
ofile << "! Type of profile function: back-to-back exponentials * pseudo-Voigt \n";
ofile << "NPROF 9 \n";
ofile << "! Tof-min(us) step Tof-max(us) \n";
ofile << "TOFRG 15051.898669 7.85 209446.601531 \n";
ofile << "! Dtt1 Dtt2 Zero \n";
ofile << "D2TOF 34841.316 5.950 -5.055 \n";
ofile << "! TOF-TWOTH of the bank \n";
ofile << "TWOTH 89.58 \n";
ofile << "! Sig-2 Sig-1 Sig-0 \n";
ofile << "SIGMA 287.174 3865.810 0.005 \n";
ofile << "! Gam-2 Gam-1 Gam-0 \n";
ofile << "GAMMA 0.000 4.991 0.005 \n";
ofile << "! alph0 beta0 alph1 beta1 \n";
ofile << "ALFBE 0.000077 0.024760 0.096713 0.006268 \n";
ofile << "END \n";
ofile.close();