mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-06-17 06:47:06 +01:00
@ -7,6 +7,7 @@ endif
|
||||
endif
|
||||
|
||||
bin_PROGRAMS = \
|
||||
latan-plot \
|
||||
latan-sample-combine \
|
||||
latan-sample-element \
|
||||
latan-sample-fake \
|
||||
@ -14,7 +15,11 @@ bin_PROGRAMS = \
|
||||
latan-sample-plot \
|
||||
latan-sample-plot-corr\
|
||||
latan-sample-read \
|
||||
latan-resample
|
||||
latan-resample
|
||||
|
||||
latan_plot_SOURCES = plot.cpp
|
||||
latan_plot_CXXFLAGS = $(COM_CXXFLAGS)
|
||||
latan_plot_LDFLAGS = -L../lib/.libs -lLatAnalyze
|
||||
|
||||
latan_sample_combine_SOURCES = sample-combine.cpp
|
||||
latan_sample_combine_CXXFLAGS = $(COM_CXXFLAGS)
|
||||
|
142
utils/plot.cpp
Normal file
142
utils/plot.cpp
Normal file
@ -0,0 +1,142 @@
|
||||
#include <LatAnalyze/Core/OptParser.hpp>
|
||||
#include <LatAnalyze/Functional/CompiledModel.hpp>
|
||||
#include <LatAnalyze/Io/Io.hpp>
|
||||
#include <LatAnalyze/Statistics/MatSample.hpp>
|
||||
#include <LatAnalyze/Core/Math.hpp>
|
||||
#include <LatAnalyze/Numerical/MinuitMinimizer.hpp>
|
||||
#include <LatAnalyze/Numerical/NloptMinimizer.hpp>
|
||||
#include <LatAnalyze/Core/Plot.hpp>
|
||||
#include <LatAnalyze/Statistics/XYSampleData.hpp>
|
||||
|
||||
using namespace std;
|
||||
using namespace Latan;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
// parse arguments /////////////////////////////////////////////////////////
|
||||
OptParser opt;
|
||||
bool parsed, imag;
|
||||
string plotFileName, outFileName, xName, yName, title, save;
|
||||
vector<string> inFileName;
|
||||
double xLow, xHigh, spacing;
|
||||
|
||||
opt.addOption("i" , "imag" , OptParser::OptType::trigger, true,
|
||||
"plot imaginary");
|
||||
opt.addOption("o", "output", OptParser::OptType::value , true,
|
||||
"output file", "");
|
||||
opt.addOption("x", "xAxis", OptParser::OptType::value , true,
|
||||
"x-axis name", "");
|
||||
opt.addOption("l", "xLow", OptParser::OptType::value , true,
|
||||
"x-axis lower bound", "0");
|
||||
opt.addOption("y", "yAxis", OptParser::OptType::value , true,
|
||||
"y-axis name", "");
|
||||
opt.addOption("", "spacing", OptParser::OptType::value , true,
|
||||
"spacing between points", "1");
|
||||
opt.addOption("s", "save", OptParser::OptType::value, true,
|
||||
"saves the source and .pdf", "");
|
||||
opt.addOption("t", "title", OptParser::OptType::value , true,
|
||||
"plot title", "");
|
||||
opt.addOption("", "help" , OptParser::OptType::trigger, true,
|
||||
"show this help message and exit");
|
||||
parsed = opt.parse(argc, argv);
|
||||
if (!parsed or opt.gotOption("help") or opt.getArgs().size() != 1)
|
||||
{
|
||||
cerr << "usage: " << argv[0] << " <.h5/manifest file> <options> " << endl;
|
||||
cerr << endl << "Possible options:" << endl << opt << endl;
|
||||
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
plotFileName = opt.getArgs().front();
|
||||
imag = opt.gotOption("i");
|
||||
xName = opt.optionValue("x");
|
||||
xLow = opt.optionValue<double>("l");
|
||||
yName = opt.optionValue("y");
|
||||
spacing = opt.optionValue<double>("spacing");
|
||||
save = opt.optionValue("s");
|
||||
title = opt.optionValue("t");
|
||||
outFileName = opt.optionValue<string>("o");
|
||||
|
||||
|
||||
if(plotFileName.find(".h5") == string::npos)
|
||||
{
|
||||
inFileName = readManifest(plotFileName);
|
||||
}
|
||||
|
||||
// load and plot file(s) /////////////////////////////////////////////////////////
|
||||
DMatSample tmp;
|
||||
Index nt;
|
||||
Plot p;
|
||||
DVec tAxis;
|
||||
|
||||
|
||||
if(inFileName.size() == 0)
|
||||
{
|
||||
tmp = Io::load<DMatSample>(plotFileName);
|
||||
nt = tmp[central].rows();
|
||||
if(imag)
|
||||
{
|
||||
tmp = tmp.block(0, 1, nt, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
tmp = tmp.block(0, 0, nt, 1);
|
||||
}
|
||||
xHigh= xLow+spacing*(nt-1);
|
||||
tAxis.setLinSpaced(nt, xLow, xHigh);
|
||||
p << PlotData(tAxis, tmp);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
tmp = Io::load<DMatSample>(inFileName[0]);
|
||||
nt = tmp[central].rows();
|
||||
xHigh= xLow+spacing*(nt-1);
|
||||
tAxis.setLinSpaced(nt, xLow, xHigh);
|
||||
|
||||
for(unsigned long i = 0; i < inFileName.size(); i++)
|
||||
{
|
||||
plotFileName = inFileName[i];
|
||||
tmp = Io::load<DMatSample>(plotFileName);
|
||||
if(imag)
|
||||
{
|
||||
tmp = tmp.block(0, 1, nt, 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
tmp = tmp.block(0, 0, nt, 1);
|
||||
}
|
||||
p << PlotData(tAxis, tmp);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
p << Label(xName, Axis::x);
|
||||
p << Label(yName, Axis::y);
|
||||
p << PlotRange(Axis::x, xLow, xHigh);
|
||||
p << Caption(title);
|
||||
|
||||
if(save != "")
|
||||
{
|
||||
cout << "Saving plot and source code to " << save << endl;
|
||||
p.save(save + "/" + title);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
cout << "Displaying plot..." << endl;
|
||||
p.display();
|
||||
}
|
||||
|
||||
|
||||
|
||||
// output //////////////////////////////////////////////////////////////////
|
||||
if (!outFileName.empty())
|
||||
{
|
||||
Io::save(tmp, outFileName);
|
||||
cout << "File saved as: " << outFileName << endl;
|
||||
}
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user