Skip to content
Snippets Groups Projects
Commit 43000672 authored by Jose Borreguero's avatar Jose Borreguero
Browse files

Refs #5428 improved error testing

modified:  SassenaFFT.h
modified:  SassenaFFT.cpp
modified:  SassenaFFTTest.h
parent efca19ec
No related merge requests found
...@@ -39,7 +39,7 @@ class DLLExport SassenaFFT : public API::Algorithm ...@@ -39,7 +39,7 @@ class DLLExport SassenaFFT : public API::Algorithm
{ {
public: public:
/// Default constructor /// Default constructor
SassenaFFT() : API::Algorithm() {} SassenaFFT() : API::Algorithm(), m_T2meV(1.0/11.604) {}
/// Destructor /// Destructor
virtual ~SassenaFFT() {} virtual ~SassenaFFT() {}
/// Algorithm's name for identification overriding a virtual method /// Algorithm's name for identification overriding a virtual method
...@@ -58,6 +58,7 @@ private: ...@@ -58,6 +58,7 @@ private:
void init(); void init();
void exec(); void exec();
bool checkGroups(); bool checkGroups();
const double m_T2meV; //conversion factor from Kelvin to meV
}; // class SassenaFFT }; // class SassenaFFT
......
...@@ -91,14 +91,14 @@ void SassenaFFT::exec() ...@@ -91,14 +91,14 @@ void SassenaFFT::exec()
//Do we apply the detailed balance condition exp(E/(2*kT)) ? //Do we apply the detailed balance condition exp(E/(2*kT)) ?
if( this->getProperty("DetailedBalance") ) if( this->getProperty("DetailedBalance") )
{ {
double kT = this->getProperty("Temp"); double T = this->getProperty("Temp");
kT /= 11.604; // units of meV T *= m_T2meV; // from Kelvin to units of meV
API::IAlgorithm_sptr ec = this->createSubAlgorithm("ExponentialCorrection"); API::IAlgorithm_sptr ec = this->createSubAlgorithm("ExponentialCorrection");
ec->setProperty<DataObjects::Workspace2D_sptr>("InputWorkspace", sqw); ec->setProperty<DataObjects::Workspace2D_sptr>("InputWorkspace", sqw);
ec->setProperty<DataObjects::Workspace2D_sptr>("OutputWorkspace", sqw); ec->setProperty<DataObjects::Workspace2D_sptr>("OutputWorkspace", sqw);
ec->setProperty("C0",1.0); ec->setProperty<double>("C0",1.0);
ec->setProperty("C1",-1.0/(2.0*kT)); ec->setProperty<double>("C1",-1.0/(2.0*T));
ec->setProperty("Operation","multiply"); ec->setPropertyValue("Operation","Multiply");
ec->executeAsSubAlg(); ec->executeAsSubAlg();
} }
......
...@@ -40,14 +40,36 @@ public: ...@@ -40,14 +40,36 @@ public:
// execute the algorithm // execute the algorithm
TS_ASSERT_THROWS_NOTHING( m_alg.execute() ); TS_ASSERT_THROWS_NOTHING( m_alg.execute() );
TS_ASSERT( m_alg.isExecuted() ); TS_ASSERT( m_alg.isExecuted() );
//this->printWorkspace2D("/tmp/sqw.dat",gwsName +"_sqw"); this->printWorkspace2D("/tmp/sqwZeroImaginary.dat",gwsName +"_sqw");
// The input real part was an exponential h*exp(-x^2/(2*s^2) with h=1.0,s=1.0 // The input real part was an exponential h*exp(-x^2/(2*s^2) with h=1.0,s=1.0
// The Fourier transform is an exponential h'*exp(-x^2/(2*s'^2) with h'=sqrt(2*pi*s)=2.507 and s=2*pi/s=0.159 // The Fourier transform is an exponential h'*exp(-x^2/(2*s'^2) with h'=sqrt(2*pi*s)=2.507 and s=2*pi/s=0.159
DataObjects::Workspace2D_const_sptr ws = API::AnalysisDataService::Instance().retrieveWS<DataObjects::Workspace2D>(gwsName +"_sqw"); DataObjects::Workspace2D_const_sptr ws = API::AnalysisDataService::Instance().retrieveWS<DataObjects::Workspace2D>(gwsName +"_sqw");
checkHeigth(ws, sqrt(2*M_PI) ); checkHeigth(ws, sqrt(2*M_PI) );
checkAverage(ws,0.0);
checkSigma(ws, 1.0/(2.0*M_PI) ); checkSigma(ws, 1.0/(2.0*M_PI) );
} }
/// FFT of a real symmetric Gaussian with detailed balance condition
void test_DetailedBalanceCondition(){
const double T(300);
const double params[] = {1.0, 1.0, 0.0, 0.1, 0.1, 2.0}; // three pairs of (Heigth,sigma) values
if( !m_alg.isInitialized() ){ m_alg.initialize(); }
const std::string gwsName("SassenaII");
this->createGroupWorkspace( params, gwsName );
m_alg.setPropertyValue("InputWorkspace", gwsName);
m_alg.setProperty("DetailedBalance",true);
m_alg.setProperty("Temp",T);
// execute the algorithm
TS_ASSERT_THROWS_NOTHING( m_alg.execute() );
TS_ASSERT( m_alg.isExecuted() );
this->printWorkspace2D("/tmp/sqwDetailedBalanceCondition.dat",gwsName +"_sqw");
DataObjects::Workspace2D_const_sptr ws = API::AnalysisDataService::Instance().retrieveWS<DataObjects::Workspace2D>(gwsName +"_sqw");
checkHeigth(ws, sqrt(2*M_PI) );
const double sigma = 1.0/(2.0*M_PI);
checkAverage(ws,-sigma*sigma/(2*T));
checkSigma(ws, sigma);
}
private: private:
/** /**
...@@ -57,7 +79,7 @@ private: ...@@ -57,7 +79,7 @@ private:
*/ */
void checkHeigth(DataObjects::Workspace2D_const_sptr &ws, const double &value) void checkHeigth(DataObjects::Workspace2D_const_sptr &ws, const double &value)
{ {
const double frErr=1E-04; //allowed fractional error const double frErr=1E-02; //allowed fractional error
const size_t nspectra = ws->getNumberHistograms(); const size_t nspectra = ws->getNumberHistograms();
MantidVec yv; MantidVec yv;
for(size_t i=0; i<nspectra; i++) for(size_t i=0; i<nspectra; i++)
...@@ -65,12 +87,44 @@ private: ...@@ -65,12 +87,44 @@ private:
double goldStandard = value/(1+ static_cast<double>(i) ); double goldStandard = value/(1+ static_cast<double>(i) );
yv = ws->readY(i); yv = ws->readY(i);
double h = *std::max_element( yv.begin(), yv.end() ); double h = *std::max_element( yv.begin(), yv.end() );
TS_ASSERT_DELTA( h, goldStandard, frErr ); double error1 = DBL_EPSILON*std::sqrt( yv.size() ); //rounding error if value==0
double error = fmax(error1, frErr*std::fabs(goldStandard));
TS_ASSERT_DELTA( h, goldStandard, error );
} }
} }
/** /**
* Check the standar deviation * Check the average
* @param wsName name of the workspace
* @param value compare to the average
*/
void checkAverage(DataObjects::Workspace2D_const_sptr &ws, const double &value)
{
const double frErr=1E-02; //allowed fractional error
const size_t nspectra = ws->getNumberHistograms();
MantidVec yv,xv;
for(size_t i=0; i<nspectra; i++)
{
double goldStandard = (1+ static_cast<double>(i) )*value;
xv = ws->readX(i);
yv = ws->readY(i);
double sum = 0.0;
double average = 0.0;
MantidVec::iterator itx = xv.begin();
for(MantidVec::iterator it = yv.begin(); it != yv.end(); ++it)
{
sum += *it;
average += (*it)*(*itx);
++itx;
}
average /= sum;
double error1 = DBL_EPSILON*std::sqrt( yv.size() ); //rounding error if value==0
double error = fmax(error1, frErr*std::fabs(goldStandard));
TS_ASSERT_DELTA( average, goldStandard, error );
}
}
/**
* Check the standard deviation
* @param wsName name of the workspace * @param wsName name of the workspace
* @param value compare to the standard deviation * @param value compare to the standard deviation
*/ */
...@@ -90,7 +144,9 @@ private: ...@@ -90,7 +144,9 @@ private:
for(MantidVec::iterator it = yv.begin(); it != yv.end(); ++it) sum += *it; for(MantidVec::iterator it = yv.begin(); it != yv.end(); ++it) sum += *it;
sum *= dx / static_cast<double>(nbins); sum *= dx / static_cast<double>(nbins);
double sigma = sum / (h * std::sqrt(2*M_PI)); double sigma = sum / (h * std::sqrt(2*M_PI));
TS_ASSERT_DELTA( sigma, goldStandard, frErr ); double error1 = DBL_EPSILON*std::sqrt( yv.size() ); //rounding error if value==0
double error = fmax(error1, frErr*std::fabs(goldStandard));
TS_ASSERT_DELTA( sigma, goldStandard, error );
} }
} }
......
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