Skip to content
Snippets Groups Projects
Commit 2da123b6 authored by mahadi's avatar mahadi
Browse files

FTDistributions unit test

parent ddddf112
No related branches found
No related tags found
No related merge requests found
#ifndef FTDISTRIBUTIONSTEST_H
#define FTDISTRIBUTIONSTEST_H
#include "FTDistributions.h"
class FTDistributionsTest : public ::testing::Test
{
protected:
FTDistributionsTest(){}
virtual ~FTDistributionsTest(){}
};
TEST_F(FTDistributionsTest, FTDistribution2DCauchyConstructor)
{
IFTDistribution2D * iftd2D = new FTDistribution2DCauchy(1.0,-2.0);
EXPECT_EQ(1.0, iftd2D->getCoherenceLengthX());
EXPECT_EQ(-2.0, iftd2D->getCoherenceLengthY());
EXPECT_EQ(M_PI/2.0, iftd2D->getDelta());
EXPECT_EQ(0.0, iftd2D->getGamma());
EXPECT_EQ("2DDistributionCauchy", iftd2D->getName());
/*double sum_sq = qx*qx*m_coherence_length_x*m_coherence_length_x
+ qy*qy*m_coherence_length_y*m_coherence_length_y;
return std::pow(1.0 + sum_sq, -1.5);*/
EXPECT_NEAR(0.343206, iftd2D->evaluate(0.2, 0.5),0.000001);
iftd2D->setGamma(3.0);
EXPECT_EQ(3.0, iftd2D->getGamma());
delete iftd2D;
}
TEST_F(FTDistributionsTest, FTDistribution2DCauchyClone)
{
IFTDistribution2D * iftd2D = new FTDistribution2DCauchy(-5.0,2.3);
IFTDistribution2D * iftd2DClone = iftd2D->clone();
EXPECT_EQ(-5.0, iftd2DClone->getCoherenceLengthX());
EXPECT_EQ(2.3, iftd2DClone->getCoherenceLengthY());
EXPECT_EQ(M_PI/2.0, iftd2DClone->getDelta());
EXPECT_EQ(0.0, iftd2DClone->getGamma());
EXPECT_EQ("2DDistributionCauchy", iftd2DClone->getName());
EXPECT_NEAR(0.165121078, iftd2DClone->evaluate(0.2, 0.5),0.000001);
iftd2DClone->setGamma(3.0);
EXPECT_EQ(3.0, iftd2DClone->getGamma());
delete iftd2D;
delete iftd2DClone;
}
TEST_F(FTDistributionsTest, FTDistribution2DGaussConstructor)
{
IFTDistribution2D * iftd2D = new FTDistribution2DGauss(1.0,-2.0);
EXPECT_EQ(1.0, iftd2D->getCoherenceLengthX());
EXPECT_EQ(-2.0, iftd2D->getCoherenceLengthY());
EXPECT_EQ(M_PI/2.0, iftd2D->getDelta());
EXPECT_EQ(0.0, iftd2D->getGamma());
EXPECT_EQ("2DDistributionGauss", iftd2D->getName());
/*double sum_sq = qx*qx*m_coherence_length_x*m_coherence_length_x
+ qy*qy*m_coherence_length_y*m_coherence_length_y;
return std::exp(-sum_sq/4.0)/2.0;*/
EXPECT_NEAR(0.3855258, iftd2D->evaluate(0.2, 0.5),0.000001);
iftd2D->setGamma(3.0);
EXPECT_EQ(3.0, iftd2D->getGamma());
delete iftd2D;
}
TEST_F(FTDistributionsTest, FTDistribution2DGaussClone)
{
IFTDistribution2D * iftd2D = new FTDistribution2DGauss(-5.0,2.3);
IFTDistribution2D * iftd2DClone = iftd2D->clone();
EXPECT_EQ(-5.0, iftd2DClone->getCoherenceLengthX());
EXPECT_EQ(2.3, iftd2DClone->getCoherenceLengthY());
EXPECT_EQ(M_PI/2.0, iftd2DClone->getDelta());
EXPECT_EQ(0.0, iftd2DClone->getGamma());
EXPECT_EQ("2DDistributionGauss", iftd2DClone->getName());
EXPECT_NEAR(0.279774, iftd2DClone->evaluate(0.2, 0.5),0.000001);
iftd2DClone->setGamma(3.0);
EXPECT_EQ(3.0, iftd2DClone->getGamma());
delete iftd2D;
delete iftd2DClone;
}
TEST_F(FTDistributionsTest, FTDistribution2DVoigtConstructor)
{
IFTDistribution2D * iftd2D = new FTDistribution2DVoigt(1.0,-2.0,3.5);
EXPECT_EQ(1.0, iftd2D->getCoherenceLengthX());
EXPECT_EQ(-2.0, iftd2D->getCoherenceLengthY());
EXPECT_EQ(M_PI/2.0, iftd2D->getDelta());
EXPECT_EQ(0.0, iftd2D->getGamma());
EXPECT_EQ("2DDistributionVoigt", iftd2D->getName());
/*double sum_sq = qx*qx*m_coherence_length_x*m_coherence_length_x
+ qy*qy*m_coherence_length_y*m_coherence_length_y;
return m_eta*std::exp(-sum_sq/4.0)/2.0
+ (1.0 - m_eta)*std::pow(1.0 + sum_sq, -1.5);*/
EXPECT_NEAR(0.4913253, iftd2D->evaluate(0.2, 0.5),0.000001);
iftd2D->setGamma(3.0);
EXPECT_EQ(3.0, iftd2D->getGamma());
delete iftd2D;
}
//0.165121078
//0.279774
TEST_F(FTDistributionsTest, FTDistribution2DVoigtClone)
{
IFTDistribution2D * iftd2D = new FTDistribution2DVoigt(-5.0,2.3, -5.6);
IFTDistribution2D * iftd2DClone = iftd2D->clone();
EXPECT_EQ(-5.0, iftd2DClone->getCoherenceLengthX());
EXPECT_EQ(2.3, iftd2DClone->getCoherenceLengthY());
EXPECT_EQ(M_PI/2.0, iftd2DClone->getDelta());
EXPECT_EQ(0.0, iftd2DClone->getGamma());
EXPECT_EQ("2DDistributionVoigt", iftd2DClone->getName());
EXPECT_NEAR(-0.476936, iftd2DClone->evaluate(0.2, 0.5),0.000001);
iftd2DClone->setGamma(3.0);
EXPECT_EQ(3.0, iftd2DClone->getGamma());
delete iftd2D;
delete iftd2DClone;
}
#endif //FTDISTRIBUTIONSTEST_H
......@@ -26,6 +26,7 @@
#include "LLDataTest.h"
#include "TRangeTest.h"
#include "AxisBinTest.h"
#include "FTDistributionsTest.h"
struct ErrorStreamRedirect {
ErrorStreamRedirect( std::streambuf * new_buffer )
......
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