2020-01-28 17:35:07 +00:00
|
|
|
#include <LatAnalyze/Core/Math.hpp>
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Core/OptParser.hpp>
|
2020-01-28 17:35:07 +00:00
|
|
|
#include <LatAnalyze/Core/Plot.hpp>
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Functional/CompiledModel.hpp>
|
|
|
|
#include <LatAnalyze/Io/Io.hpp>
|
|
|
|
#include <LatAnalyze/Numerical/MinuitMinimizer.hpp>
|
|
|
|
#include <LatAnalyze/Numerical/NloptMinimizer.hpp>
|
2020-01-28 17:35:07 +00:00
|
|
|
#include <LatAnalyze/Physics/CorrelatorFitter.hpp>
|
|
|
|
#include <LatAnalyze/Physics/EffectiveMass.hpp>
|
|
|
|
#include <LatAnalyze/Statistics/MatSample.hpp>
|
2019-02-10 00:23:36 +00:00
|
|
|
#include <LatAnalyze/Statistics/XYSampleData.hpp>
|
2016-06-14 12:35:17 +01:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace Latan;
|
|
|
|
|
2019-12-12 18:07:03 +00:00
|
|
|
struct TwoPtFit
|
|
|
|
{
|
|
|
|
SampleFitResult result;
|
|
|
|
Index tMin, tMax;
|
|
|
|
};
|
|
|
|
|
2016-06-14 12:35:17 +01:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
// parse arguments /////////////////////////////////////////////////////////
|
|
|
|
OptParser opt;
|
2019-12-12 18:07:03 +00:00
|
|
|
bool parsed, doPlot, doHeatmap, doCorr, fold, doScan;
|
2019-11-28 15:49:28 +00:00
|
|
|
string corrFileName, model, outFileName, outFmt, savePlot;
|
2016-06-14 12:35:17 +01:00
|
|
|
Index ti, tf, shift, nPar, thinning;
|
|
|
|
double svdTol;
|
|
|
|
Minimizer::Verbosity verbosity;
|
|
|
|
|
|
|
|
opt.addOption("" , "ti" , OptParser::OptType::value , false,
|
|
|
|
"initial fit time");
|
|
|
|
opt.addOption("" , "tf" , OptParser::OptType::value , false,
|
|
|
|
"final fit time");
|
|
|
|
opt.addOption("t" , "thinning", OptParser::OptType::value , true,
|
|
|
|
"thinning of the time interval", "1");
|
|
|
|
opt.addOption("s", "shift" , OptParser::OptType::value , true,
|
|
|
|
"time variable shift", "0");
|
|
|
|
opt.addOption("m", "model" , OptParser::OptType::value , true,
|
2020-01-28 17:35:07 +00:00
|
|
|
"fit model (exp<n>|sinh<n>|cosh<n>|linear|cst|<interpreter code>)", "exp1");
|
2016-06-14 12:35:17 +01:00
|
|
|
opt.addOption("" , "nPar" , OptParser::OptType::value , true,
|
|
|
|
"number of model parameters for custom models "
|
|
|
|
"(-1 if irrelevant)", "-1");
|
|
|
|
opt.addOption("" , "svd" , OptParser::OptType::value , true,
|
|
|
|
"singular value elimination threshold", "0.");
|
|
|
|
opt.addOption("v", "verbosity", OptParser::OptType::value , true,
|
|
|
|
"minimizer verbosity level (0|1|2)", "0");
|
|
|
|
opt.addOption("o", "output", OptParser::OptType::value , true,
|
|
|
|
"output file", "");
|
|
|
|
opt.addOption("" , "uncorr" , OptParser::OptType::trigger, true,
|
|
|
|
"only do the uncorrelated fit");
|
|
|
|
opt.addOption("" , "fold" , OptParser::OptType::trigger, true,
|
|
|
|
"fold the correlator");
|
|
|
|
opt.addOption("p", "plot" , OptParser::OptType::trigger, true,
|
|
|
|
"show the fit plot");
|
|
|
|
opt.addOption("h", "heatmap" , OptParser::OptType::trigger, true,
|
|
|
|
"show the fit correlation heatmap");
|
2019-12-12 18:07:03 +00:00
|
|
|
opt.addOption("", "save-plot", OptParser::OptType::value, true,
|
2019-05-28 07:38:43 +01:00
|
|
|
"saves the source and .pdf", "");
|
2019-12-12 18:07:03 +00:00
|
|
|
opt.addOption("", "scan", OptParser::OptType::trigger, true,
|
|
|
|
"scan all possible fit ranges within [ti,tf]");
|
2016-06-14 12:35:17 +01:00
|
|
|
opt.addOption("", "help" , OptParser::OptType::trigger, true,
|
|
|
|
"show this help message and exit");
|
|
|
|
parsed = opt.parse(argc, argv);
|
|
|
|
if (!parsed or (opt.getArgs().size() != 1) or opt.gotOption("help"))
|
|
|
|
{
|
|
|
|
cerr << "usage: " << argv[0] << " <options> <correlator file>" << endl;
|
|
|
|
cerr << endl << "Possible options:" << endl << opt << endl;
|
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
corrFileName = opt.getArgs().front();
|
|
|
|
ti = opt.optionValue<Index>("ti");
|
|
|
|
tf = opt.optionValue<Index>("tf");
|
|
|
|
thinning = opt.optionValue<Index>("t");
|
|
|
|
shift = opt.optionValue<Index>("s");
|
|
|
|
model = opt.optionValue("m");
|
|
|
|
nPar = opt.optionValue<Index>("nPar");
|
|
|
|
svdTol = opt.optionValue<double>("svd");
|
|
|
|
outFileName = opt.optionValue<string>("o");
|
|
|
|
doCorr = !opt.gotOption("uncorr");
|
|
|
|
fold = opt.gotOption("fold");
|
|
|
|
doPlot = opt.gotOption("p");
|
|
|
|
doHeatmap = opt.gotOption("h");
|
2019-12-12 18:07:03 +00:00
|
|
|
savePlot = opt.optionValue("save-plot");
|
|
|
|
doScan = opt.gotOption("scan");
|
2016-06-14 12:35:17 +01:00
|
|
|
switch (opt.optionValue<unsigned int>("v"))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
verbosity = Minimizer::Verbosity::Silent;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
verbosity = Minimizer::Verbosity::Normal;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
verbosity = Minimizer::Verbosity::Debug;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cerr << "error: wrong verbosity level" << endl;
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// load correlator /////////////////////////////////////////////////////////
|
|
|
|
DMatSample tmp, corr;
|
|
|
|
Index nSample, nt;
|
|
|
|
|
2020-02-02 18:43:14 +00:00
|
|
|
corr = Io::load<DMatSample>(corrFileName);
|
|
|
|
nSample = corr.size();
|
|
|
|
nt = corr[central].rows();
|
|
|
|
corr = corr.block(0, 0, nt, 1);
|
|
|
|
corr = CorrelatorUtils::shift(corr, shift);
|
2016-06-14 12:35:17 +01:00
|
|
|
if (fold)
|
|
|
|
{
|
2020-02-02 18:43:14 +00:00
|
|
|
corr = CorrelatorUtils::fold(corr);
|
2016-06-14 12:35:17 +01:00
|
|
|
}
|
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
// make model //////////////////////////////////////////////////////////////
|
|
|
|
CorrelatorFitter fitter(corr);
|
|
|
|
DoubleModel mod;
|
|
|
|
auto modelPar = CorrelatorModels::parseModel(model);
|
2016-06-14 12:35:17 +01:00
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
if (modelPar.type != CorrelatorType::undefined)
|
2019-01-07 11:55:00 +00:00
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
mod = CorrelatorModels::makeModel(modelPar, nt);
|
|
|
|
nPar = mod.getNPar();
|
2019-01-22 11:11:04 +00:00
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (nPar > 0)
|
|
|
|
{
|
|
|
|
mod = compile(model, 1, nPar);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cerr << "error: please specify the number of model parameter"
|
|
|
|
" using the --nPar function" << endl;
|
|
|
|
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// fit /////////////////////////////////////////////////////////////////////
|
|
|
|
DVec init(nPar);
|
|
|
|
NloptMinimizer globMin(NloptMinimizer::Algorithm::GN_CRS2_LM);
|
|
|
|
MinuitMinimizer locMin;
|
|
|
|
vector<Minimizer *> unCorrMin{&globMin, &locMin};
|
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
// set fitter **************************************************************
|
|
|
|
fitter.setModel(mod);
|
|
|
|
fitter.data().setSvdTolerance(svdTol);
|
|
|
|
fitter.setThinning(thinning);
|
|
|
|
|
2019-12-12 18:07:03 +00:00
|
|
|
// set initial values ******************************************************
|
2020-01-28 17:35:07 +00:00
|
|
|
if (modelPar.type != CorrelatorType::undefined)
|
2019-01-07 11:55:00 +00:00
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
init = CorrelatorModels::parameterGuess(corr, modelPar);
|
2019-01-24 12:20:13 +00:00
|
|
|
}
|
2019-01-07 11:55:00 +00:00
|
|
|
else
|
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
init.fill(0.1);
|
2016-06-14 12:35:17 +01:00
|
|
|
}
|
2020-01-28 17:35:07 +00:00
|
|
|
|
2019-12-12 18:07:03 +00:00
|
|
|
// set limits for minimisers ***********************************************
|
2016-06-14 12:35:17 +01:00
|
|
|
for (Index p = 0; p < nPar; p += 2)
|
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
if ((modelPar.type == CorrelatorType::exp) or
|
|
|
|
(modelPar.type == CorrelatorType::cosh) or
|
|
|
|
(modelPar.type == CorrelatorType::sinh))
|
2019-01-07 11:55:00 +00:00
|
|
|
{
|
|
|
|
globMin.setLowLimit(p, 0.);
|
2020-01-28 17:35:07 +00:00
|
|
|
locMin.setLowLimit(p, 0.);
|
2019-01-07 11:55:00 +00:00
|
|
|
globMin.setHighLimit(p, 10.*init(p));
|
2019-01-24 12:20:13 +00:00
|
|
|
globMin.setLowLimit(p + 1, -10.*fabs(init(p + 1)));
|
|
|
|
globMin.setHighLimit(p + 1, 10.*fabs(init(p + 1)));
|
|
|
|
}
|
2020-04-30 10:50:08 +01:00
|
|
|
else if(modelPar.type == CorrelatorType::linear)
|
|
|
|
{
|
|
|
|
globMin.setLowLimit(p, -10.*fabs(init(p)));
|
|
|
|
locMin.setLowLimit(p, -10.*fabs(init(p)));
|
|
|
|
globMin.setHighLimit(p, 10.*init(p));
|
|
|
|
globMin.setLowLimit(p + 1, -10.*fabs(init(p + 1)));
|
|
|
|
globMin.setHighLimit(p + 1, 10.*fabs(init(p + 1)));
|
|
|
|
}
|
2020-01-28 17:35:07 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
globMin.setLowLimit(p, -10*fabs(init(p)));
|
|
|
|
globMin.setHighLimit(p, 10*fabs(init(p)));
|
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
}
|
|
|
|
globMin.setPrecision(0.001);
|
|
|
|
globMin.setMaxIteration(100000);
|
|
|
|
globMin.setVerbosity(verbosity);
|
|
|
|
locMin.setMaxIteration(1000000);
|
|
|
|
locMin.setVerbosity(verbosity);
|
2019-12-12 18:07:03 +00:00
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
// standard fit ////////////////////////////////////////////////////////////
|
2019-12-12 18:07:03 +00:00
|
|
|
if (!doScan)
|
2016-06-14 12:35:17 +01:00
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
// fit *****************************************************************
|
2019-12-12 18:07:03 +00:00
|
|
|
SampleFitResult fit;
|
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
fitter.setFitRange(ti, tf);
|
2019-12-12 18:07:03 +00:00
|
|
|
if (doCorr)
|
|
|
|
{
|
|
|
|
cout << "-- uncorrelated fit..." << endl;
|
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
cout << "using model '" << model << "'" << endl;
|
2020-01-28 17:35:07 +00:00
|
|
|
fitter.setCorrelation(false);
|
|
|
|
fit = fitter.fit(unCorrMin, init);
|
2016-06-14 12:35:17 +01:00
|
|
|
fit.print();
|
2019-12-12 18:07:03 +00:00
|
|
|
if (doCorr)
|
2019-01-07 11:55:00 +00:00
|
|
|
{
|
2019-12-12 18:07:03 +00:00
|
|
|
cout << "-- correlated fit..." << endl;
|
|
|
|
cout << "using model '" << model << "'" << endl;
|
|
|
|
init = fit[central];
|
2020-01-28 17:35:07 +00:00
|
|
|
fitter.setCorrelation(true);
|
|
|
|
fit = fitter.fit(locMin, init);
|
2019-12-12 18:07:03 +00:00
|
|
|
fit.print();
|
2019-01-07 11:55:00 +00:00
|
|
|
}
|
2019-12-12 18:07:03 +00:00
|
|
|
if (!outFileName.empty())
|
2019-05-28 07:38:43 +01:00
|
|
|
{
|
2019-12-12 18:07:03 +00:00
|
|
|
Io::save(fit, outFileName);
|
2019-05-28 07:38:43 +01:00
|
|
|
}
|
2019-12-12 18:07:03 +00:00
|
|
|
// plots ***************************************************************
|
|
|
|
if (doPlot)
|
2016-06-14 12:35:17 +01:00
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
DMatSample tvec(nSample);
|
|
|
|
|
|
|
|
tvec.fill(DVec::LinSpaced(nt, 0, nt - 1));
|
|
|
|
if (modelPar.type != CorrelatorType::cst)
|
2019-12-12 18:07:03 +00:00
|
|
|
{
|
|
|
|
Plot p;
|
2019-01-24 12:20:13 +00:00
|
|
|
|
2019-12-12 18:07:03 +00:00
|
|
|
p << PlotRange(Axis::x, 0, nt - 1);
|
2020-01-28 17:35:07 +00:00
|
|
|
if ((modelPar.type == CorrelatorType::exp) or
|
|
|
|
(modelPar.type == CorrelatorType::cosh) or
|
|
|
|
(modelPar.type == CorrelatorType::sinh))
|
2019-12-12 18:07:03 +00:00
|
|
|
{
|
|
|
|
p << LogScale(Axis::y);
|
|
|
|
}
|
|
|
|
p << Color("rgb 'blue'") << PlotPredBand(fit.getModel(_), 0, nt - 1);
|
|
|
|
p << Color("rgb 'blue'") << PlotFunction(fit.getModel(), 0, nt - 1);
|
2020-01-28 17:35:07 +00:00
|
|
|
p << Color("rgb 'red'") << PlotData(fitter.data().getData());
|
|
|
|
p << Label("t/a", Axis::x) << Caption("Correlator");
|
2019-12-12 18:07:03 +00:00
|
|
|
p.display();
|
|
|
|
if(savePlot != "")
|
|
|
|
{
|
|
|
|
p.save(savePlot + "_corr");
|
|
|
|
}
|
|
|
|
}
|
2020-01-28 17:35:07 +00:00
|
|
|
if (modelPar.type != CorrelatorType::undefined)
|
2016-06-14 12:35:17 +01:00
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
Plot p;
|
|
|
|
EffectiveMass effMass(modelPar.type);
|
|
|
|
DMatSample em;
|
|
|
|
DVec fitErr, emtvec;
|
|
|
|
double e0, e0Err;
|
2019-12-12 18:07:03 +00:00
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
emtvec = effMass.getTime(nt);
|
|
|
|
em = effMass(corr);
|
2019-12-12 18:07:03 +00:00
|
|
|
fitErr = fit.variance().cwiseSqrt();
|
|
|
|
e0 = fit[central](0);
|
|
|
|
e0Err = fitErr(0);
|
|
|
|
p.reset();
|
2020-01-28 17:35:07 +00:00
|
|
|
p << PlotRange(Axis::x, 0, nt - 1);
|
|
|
|
p << PlotRange(Axis::y, e0 - 30.*e0Err, e0 + 30.*e0Err);
|
|
|
|
p << Color("rgb 'blue'") << PlotBand(0, nt - 1, e0 - e0Err, e0 + e0Err);
|
2019-12-12 18:07:03 +00:00
|
|
|
p << Color("rgb 'blue'") << PlotHLine(e0);
|
2020-01-28 17:35:07 +00:00
|
|
|
p << Color("rgb 'red'") << PlotData(emtvec, em);
|
|
|
|
p << Label("t/a", Axis::x) << Caption("Effective Mass");
|
2019-12-12 18:07:03 +00:00
|
|
|
p.display();
|
|
|
|
if(savePlot != "")
|
|
|
|
{
|
|
|
|
p.save(savePlot + "_effMass");
|
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
}
|
2019-12-12 18:07:03 +00:00
|
|
|
if (doHeatmap)
|
2019-11-28 15:49:28 +00:00
|
|
|
{
|
2019-12-12 18:07:03 +00:00
|
|
|
Plot p;
|
2020-01-28 17:35:07 +00:00
|
|
|
Index n = fitter.data().getFitVarMat().rows();
|
|
|
|
DMat id = DMat::Identity(n, n),
|
|
|
|
var = fitter.data().getFitVarMat();
|
2019-12-12 18:07:03 +00:00
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
p << PlotMatrix(Math::varToCorr(var));
|
2019-12-12 18:07:03 +00:00
|
|
|
p << Caption("correlation matrix");
|
|
|
|
p.display();
|
|
|
|
if (svdTol > 0.)
|
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
DMat proj = id - var*fitter.data().getFitVarMatPInv();
|
|
|
|
|
2019-12-12 18:07:03 +00:00
|
|
|
p.reset();
|
2020-01-28 17:35:07 +00:00
|
|
|
p << PlotMatrix(proj);
|
2019-12-12 18:07:03 +00:00
|
|
|
p << Caption("singular space projector");
|
|
|
|
p.display();
|
|
|
|
}
|
2019-11-28 15:49:28 +00:00
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
}
|
2019-12-12 18:07:03 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// scan fits ///////////////////////////////////////////////////////////////
|
|
|
|
else
|
2016-06-14 12:35:17 +01:00
|
|
|
{
|
2020-01-28 17:35:07 +00:00
|
|
|
// fits ****************************************************************
|
2019-12-12 18:07:03 +00:00
|
|
|
Index nFit = 0, f = 0, ti0 = ti + (tf - ti)/4, tf0 = tf - (tf - ti)/4,
|
2020-01-28 17:35:07 +00:00
|
|
|
matSize = tf - ti + 1;
|
2019-12-12 18:07:03 +00:00
|
|
|
DMat err, pVal(matSize, matSize), relErr(matSize, matSize),
|
|
|
|
ccdf(matSize, matSize), val(matSize, matSize);
|
|
|
|
map<double, TwoPtFit> fit;
|
|
|
|
SampleFitResult tmpFit;
|
|
|
|
|
|
|
|
cout << "-- initial uncorrelated fit on [" << ti0 << ", " << tf0 << "]..." << endl;
|
|
|
|
if (thinning != 1)
|
|
|
|
{
|
|
|
|
cerr << "warning: thinning different from 1 ignored in scan mode"
|
|
|
|
<< endl;
|
|
|
|
thinning = 1;
|
|
|
|
}
|
2020-01-28 17:35:07 +00:00
|
|
|
fitter.setFitRange(ti0, tf0);
|
|
|
|
fitter.setCorrelation(false);
|
|
|
|
tmpFit = fitter.fit(unCorrMin, init);
|
2019-12-12 18:07:03 +00:00
|
|
|
tmpFit.print();
|
|
|
|
cout << "-- scanning all possible fit ranges..." << endl;
|
|
|
|
init = tmpFit[central];
|
2020-01-28 17:35:07 +00:00
|
|
|
fitter.setCorrelation(doCorr);
|
2019-12-12 18:07:03 +00:00
|
|
|
pVal.fill(Math::nan);
|
|
|
|
relErr.fill(Math::nan);
|
|
|
|
val.fill(Math::nan);
|
|
|
|
ccdf.fill(Math::nan);
|
|
|
|
for (Index ta = ti; ta < tf; ++ta)
|
|
|
|
for (Index tb = ta + nPar; tb < tf; ++tb)
|
|
|
|
{
|
|
|
|
nFit++;
|
|
|
|
}
|
|
|
|
for (Index ta = ti; ta < tf; ++ta)
|
|
|
|
for (Index tb = ta + nPar; tb < tf; ++tb)
|
|
|
|
{
|
|
|
|
Index i = ta - ti, j = tb - ti;
|
|
|
|
|
2020-01-28 17:35:07 +00:00
|
|
|
fitter.setFitRange(ta, tb);
|
|
|
|
tmpFit = fitter.fit(locMin, init);
|
2019-12-12 18:07:03 +00:00
|
|
|
err = tmpFit.variance().cwiseSqrt();
|
|
|
|
pVal(i, j) = tmpFit.getPValue();
|
|
|
|
ccdf(i, j) = tmpFit.getCcdf();
|
|
|
|
val(i, j) = tmpFit[central](0);
|
|
|
|
relErr(i, j) = err(0)/fabs(val(i, j));
|
|
|
|
fit[pVal(i, j)].result = tmpFit;
|
|
|
|
fit[pVal(i, j)].tMin = ta;
|
|
|
|
fit[pVal(i, j)].tMax = tb;
|
|
|
|
f++;
|
|
|
|
cout << "\r[" << ta << ", " << tb << "] "<< ProgressBar(f, nFit);
|
|
|
|
}
|
|
|
|
cout << endl << endl;
|
|
|
|
cout << "TOP 10 fits" << endl;
|
|
|
|
cout << "-----------" << endl;
|
|
|
|
auto it = fit.rbegin();
|
|
|
|
unsigned int k = 0;
|
|
|
|
while (k < 10)
|
|
|
|
{
|
|
|
|
auto &f = it->second;
|
|
|
|
|
|
|
|
cout << "#" << k + 1 << " -- [" << f.tMin << ", " << f.tMax << "] -- ";
|
|
|
|
f.result.print();
|
|
|
|
cout << endl;
|
|
|
|
k++;
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
// plots ***************************************************************
|
|
|
|
if (doPlot)
|
2016-06-14 12:35:17 +01:00
|
|
|
{
|
2019-12-12 18:07:03 +00:00
|
|
|
Plot p;
|
|
|
|
|
|
|
|
p << PlotMatrix(pVal);
|
|
|
|
p << Caption("p-value matrix");
|
2020-01-28 17:35:07 +00:00
|
|
|
p << Label("tMax - " + strFrom(ti), Axis::x);
|
|
|
|
p << Label("tMin - " + strFrom(ti), Axis::y);
|
2019-12-12 18:07:03 +00:00
|
|
|
p.display();
|
|
|
|
if(savePlot != "")
|
|
|
|
{
|
|
|
|
p.save(savePlot + "_pValMatrix");
|
|
|
|
}
|
|
|
|
p.reset();
|
|
|
|
p << PlotMatrix(relErr);
|
|
|
|
p << Caption("Relative error matrix");
|
2020-01-28 17:35:07 +00:00
|
|
|
p << Label("tMax - " + strFrom(ti), Axis::x);
|
|
|
|
p << Label("tMin - " + strFrom(ti), Axis::y);
|
2019-12-12 18:07:03 +00:00
|
|
|
p.display();
|
|
|
|
if(savePlot != "")
|
|
|
|
{
|
|
|
|
p.save(savePlot + "_relErrMatrix");
|
|
|
|
}
|
|
|
|
p.reset();
|
|
|
|
p << PlotMatrix(val);
|
|
|
|
p << Caption("Fit result matrix");
|
2020-01-28 17:35:07 +00:00
|
|
|
p << Label("tMax - " + strFrom(ti), Axis::x);
|
|
|
|
p << Label("tMin - " + strFrom(ti), Axis::y);
|
2019-12-12 18:07:03 +00:00
|
|
|
p.display();
|
|
|
|
if(savePlot != "")
|
|
|
|
{
|
|
|
|
p.save(savePlot + "_valMatrix");
|
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
p.reset();
|
2019-12-12 18:07:03 +00:00
|
|
|
p << PlotMatrix(ccdf);
|
|
|
|
p << Caption("chi^2 CCDF matrix");
|
2020-01-28 17:35:07 +00:00
|
|
|
p << Label("tMax - " + strFrom(ti), Axis::x);
|
|
|
|
p << Label("tMin - " + strFrom(ti), Axis::y);
|
2016-06-14 12:35:17 +01:00
|
|
|
p.display();
|
2019-12-12 18:07:03 +00:00
|
|
|
if(savePlot != "")
|
|
|
|
{
|
|
|
|
p.save(savePlot + "_ccdfMatrix");
|
|
|
|
}
|
2016-06-14 12:35:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|