208 typedef JRange<double> JRange_t;
239 JParser<> zap(
"General purpose plot program for 1D ROOT objects.");
241 zap[
'f'] =
make_field(inputFile,
"<input file>:<object name>");
243 zap[
'w'] =
make_field(canvas,
"size of canvas <nx>x<ny> [pixels]") = JCanvas(500, 500);
245 zap[
'L'] =
make_field(legend,
"position legend e.g. TR [factor]") = JLegend(), JLegend(
"TL"), JLegend(
"TR"), JLegend(
"BR"), JLegend(
"BL");
246 zap[
'x'] =
make_field(
X,
"abscissa range") = JRange_t();
247 zap[
'y'] =
make_field(
Y,
"ordinate range") = JRange_t();
248 zap[
'z'] =
make_field(
Z,
"ordinate range of projection)") = JRange_t();
249 zap[
'X'] =
make_field(logx,
"logarithmic x-axis (-XX log10 axis)");
250 zap[
'Y'] =
make_field(logy,
"logarithmic y-axis");
251 zap[
'Z'] =
make_field(logz,
"logarithmic y-axis; after projection");
252 zap[
'P'] =
make_field(project,
"projection") =
'\0',
'x',
'X',
'y',
'Y';
253 zap[
'>'] =
make_field(xLabel,
"x-axis label") =
"";
254 zap[
'^'] =
make_field(yLabel,
"y-axis label") =
"";
255 zap[
'C'] =
make_field(drawLine,
"draw line (-C black-and-white -CC colour)");
257 zap[
'l'] =
make_field(lineWidth,
"line width") = 2;
258 zap[
'S'] =
make_field(markerSize,
"marker size") = 1.0;
259 zap[
'O'] =
make_field(option,
"plotting option") =
"";
261 zap[
'B'] =
make_field(batch,
"batch processing");
262 zap[
'T'] =
make_field(title,
"graphics title ("
263 <<
"\"" << JName_t <<
"\" -> ROOT name; "
264 <<
"\"" << JTitle_t <<
"\" -> ROOT title)") =
"KM3NeT preliminary";
266 zap[
'g'] =
make_field(group,
"group colour codes of objects") = 1;
267 zap[
't'] =
make_field(xTimeFormat,
"set time format for x-axis, e.g. \%d\\/\%m\\/\\%y%F1970-01-01 00:00:00") =
"";
272 catch(
const exception &error) {
273 FATAL(error.what() << endl);
277 gROOT->SetBatch(batch);
279 TApplication* tp =
new TApplication(
"user", NULL, NULL);
280 TCanvas* cv =
new TCanvas(
"c1",
"c1", canvas.x, canvas.y);
282 JSinglePointer<TStyle> gStyle(
new JStyle(
"gplot", cv->GetWw(), cv->GetWh()));
284 gROOT->SetStyle(
"gplot");
288 cv->SetFillStyle(4000);
289 cv->SetFillColor(kWhite);
298 Double_t
xmin = numeric_limits<double>::max();
299 Double_t
xmax = numeric_limits<double>::lowest();
301 Double_t ymin = numeric_limits<double>::max();
302 Double_t ymax = numeric_limits<double>::lowest();
307 const bool px = (project ==
'x' || project ==
'X');
308 const bool py = (project ==
'y' || project ==
'Y');
309 const bool pz = (project ==
'z' || project ==
'Z');
311 logy = (logy || logz);
326 DEBUG(
"Input: " << *input << endl);
331 ERROR(
"File: " << input->getFullFilename() <<
" not opened." << endl);
335 const TRegexp regexp(input->getObjectName());
337 TIter iter(dir->GetListOfKeys());
339 for (TKey* key; (key = (TKey*) iter.Next()) != NULL; ) {
341 const TString tag(key->GetName());
343 DEBUG(
"Key: " << tag <<
" match = " << tag.Contains(regexp) << endl);
347 if (tag.Contains(regexp) &&
isTObject(key)) {
349 if (title == JName_t) {
350 title = key->GetName();
351 }
else if (title == JTitle_t) {
352 title = key->GetTitle();
355 JRootObject object(key->ReadObj());
368 line.SetLineColor(marker.GetMarkerColor());
374 TProfile& h1 =
dynamic_cast<TProfile&
>(*object);
376 object = h1.ProjectionX();
382 TH2& h2 =
dynamic_cast<TH2&
>(*object);
388 h2.GetYaxis()->FindBin(
Z.getLowerLimit()),
389 h2.GetYaxis()->FindBin(
Z.getUpperLimit()) - 1);
393 h2.GetYaxis()->GetNbins());
399 h2.GetXaxis()->FindBin(
Z.getLowerLimit()),
400 h2.GetXaxis()->FindBin(
Z.getUpperLimit()) - 1);
404 h2.GetXaxis()->GetNbins());
408 ERROR(
"For 2D histograms, use option option -P for projections or use JPlot2D" << endl);
417 TH3& h3 =
dynamic_cast<TH3&
>(*object);
433 ERROR(
"For 3D histograms, use option option -P for projections or use JPlot2D -P <projection>" << endl);
443 if (dynamic_cast<TMarker*>(
object.
get()) == NULL) {
444 dynamic_cast<TAttMarker&
>(*object) = marker;
450 if (dynamic_cast<TLine*>(
object.
get()) == NULL) {
451 dynamic_cast<TAttLine&
> (*object) = line;
460 TAttFill& fill =
dynamic_cast<TAttFill&
>(*object);
462 fill.SetFillColor(marker.GetMarkerColor());
473 TH1& h1 =
dynamic_cast<TH1&
>(*object);
475 for (
int i = 1; i <= h1.GetNbinsX(); ++i) {
476 h1.SetBinError(i, 0.0);
483 TGraphErrors&
g1 =
dynamic_cast<TGraphErrors&
>(*object);
485 for (Int_t i = 0; i != g1.GetN(); ++i) {
497 TH1& h1 =
dynamic_cast<TH1&
>(*object);
499 h1.SetStats(stats != -1);
501 xmin = min(
xmin, h1.GetXaxis()->GetXmin());
502 xmax = max(xmax, h1.GetXaxis()->GetXmax());
503 ymin = min(ymin, logy ? h1.GetMinimum(0.0) : h1.GetMinimum());
504 ymax = max(ymax, h1.GetMaximum());
510 TGraph& g1 =
dynamic_cast<TGraph&
>(*object);
512 for (Int_t i = 0; i != g1.GetN(); ++i) {
515 xmax = max(xmax, g1.GetX()[i]);
517 if (!logy || g1.GetY()[i] > 0.0) {
518 ymin = min(ymin, g1.GetY()[i]);
519 ymax = max(ymax, g1.GetY()[i]);
527 TGraphErrors& g1 =
dynamic_cast<TGraphErrors&
>(*object);
529 for (Int_t i = 0; i != g1.GetN(); ++i) {
530 if (!logy || g1.GetY()[i] - g1.GetEY()[i] > 0.0) { ymin = min(ymin, g1.GetY()[i] - g1.GetEY()[i]); }
531 if (!logy || g1.GetY()[i] + g1.GetEY()[i] > 0.0) { ymax = max(ymax, g1.GetY()[i] + g1.GetEY()[i]); }
538 TMultiGraph& m1 =
dynamic_cast<TMultiGraph&
>(*object);
540 for (TIter i1(m1.GetListOfGraphs()); TGraph* g1 =
dynamic_cast<TGraph*
>(i1()); ) {
542 for (Int_t i = 0; i != g1->GetN(); ++i) {
545 xmax = max(xmax, g1->GetX()[i]);
547 if (!logy || g1->GetY()[i] > 0.0) {
548 ymin = min(ymin, g1->GetY()[i]);
549 ymax = max(ymax, g1->GetY()[i]);
558 TF2& f2 =
dynamic_cast<TF2&
>(*object);
561 TString formula = f2.GetExpFormula();
562 TString _z_ = TString::Format(
"%f", 0.5 * (
Z.getLowerLimit() +
Z.getUpperLimit()));
569 f2.GetRange(__xmin, __ymin, __xmax, __ymax);
573 formula.ReplaceAll(
"y", _z_);
577 f1->SetRange(__xmin, __xmax);
581 formula.ReplaceAll(
"x", _z_);
582 formula.ReplaceAll(
"y",
"x");
586 f1->SetRange(__ymin, __ymax);
590 ERROR(
"For 2D functions, use option option -P for projections or use JPlot2D" << endl);
595 DEBUG(
"TF1: " << f1->GetExpFormula() << endl);
597 f1->SetParameters(f2.GetParameters());
605 TF1& f1 =
dynamic_cast<TF1&
>(*object);
610 f1.GetRange(__xmin, __xmax);
613 xmax = max(xmax, __xmax);
614 ymin = min(ymin, f1.GetMinimum());
615 ymax = max(ymax, f1.GetMaximum());
621 THStack& hs =
dynamic_cast<THStack&
>(*object);
623 NOTICE(
"THStack" << endl);
625 TIterator*
iterator = hs.GetHists()->MakeIterator();
627 for (
size_t index = 1;
TObject* i = iterator->Next(); ++index) {
629 TH1& h1 =
dynamic_cast<TH1&
>(*i);
631 NOTICE(
"TH1[" << index <<
"] " << h1.GetName() << endl);
633 xmin = min(xmin, h1.GetXaxis()->GetXmin());
634 xmax = max(xmax, h1.GetXaxis()->GetXmax());
636 ymin = min(ymin, logy ? h1.GetMinimum(0.0) : h1.GetMinimum());
637 ymax = max(ymax, h1.GetMaximum());
640 h1.SetLineColor(kBlack);
649 TLine& h1 =
dynamic_cast<TLine&
>(*object);
651 xmin = min(xmin, h1.GetX1());
652 xmax = max(xmax, h1.GetX2());
653 ymin = min(ymin, h1.GetY1());
654 ymax = max(ymax, h1.GetY2());
660 for (TString buffer[] = {
object.getLabel(), input->getFilename().c_str(),
"" }, *i = buffer; *i !=
""; ++i) {
662 *i = (*i)(TRegexp(
"\\[.*\\]"));
664 if (i->Length() > 2) {
665 object.setLabel((*i)(1, i->Length() - 2));
669 DEBUG(
"Add object: " << tag <<
" with label <" <<
object.
getLabel() <<
">" << endl);
672 master =
dynamic_cast<TH1*
>(
object.get());
675 listOfObjects.push_back(
object);
680 if (listOfObjects.empty()) {
681 ERROR(
"Nothing to draw." << endl);
690 TH1* h1 =
dynamic_cast<TH1*
> (i->get());
691 TGraph* g1 =
dynamic_cast<TGraph*
> (i->get());
692 TMultiGraph* m1 =
dynamic_cast<TMultiGraph*
>(i->get());
693 TAttLine* ls =
dynamic_cast<TAttLine*
> (i->get());
696 TIterator* iterator = NULL;
700 iterator = h1->GetListOfFunctions()->MakeIterator();
702 }
else if (g1 != NULL) {
704 iterator = g1->GetListOfFunctions()->MakeIterator();
706 }
else if (m1 != NULL) {
708 for (TIter i1(m1->GetListOfGraphs()); TGraph* gi =
dynamic_cast<TGraph*
>(i1()); ) {
709 for (TIter i2(gi->GetListOfFunctions()); TF1* fi =
dynamic_cast<TF1*
>(i2()); ) {
714 iterator = list.MakeIterator();
717 if (iterator != NULL) {
719 Double_t x1[] = { numeric_limits<Double_t>::max(), numeric_limits<Double_t>::max() };
720 Double_t x2[] = { numeric_limits<Double_t>::lowest(), numeric_limits<Double_t>::lowest() };
722 for (
int nf = 0, ns = 0, nc = 1; TF1* f1 = (TF1*) iterator->Next(); ++nf) {
724 f1->GetRange(x1[1], x2[1]);
729 if (listOfObjects.size() == 1) {
731 if (x1[0] == x1[1] &&
744 f1->SetLineColor(ls->GetLineColor());
767 if (
X != JRange_t()) {
768 xmin =
X.getLowerLimit();
769 xmax =
X.getUpperLimit();
772 if (
Y != JRange_t()) {
773 ymin =
Y.getLowerLimit();
774 ymax =
Y.getUpperLimit();
775 }
else if (ymax > ymin) {
781 if (!listOfObjects.empty()) {
783 if (
master == NULL || listOfObjects.size() >= 2
u) {
789 for (Int_t i = 1; i <=
master->GetXaxis()->GetNbins(); ++i) {
790 master->SetBinContent(i, ymin);
797 TText* p =
new TText(0.5, 0.5,
MAKE_CSTRING(
"No data"));
805 if (logx) { gPad->SetLogx(); }
806 if (logy) { gPad->SetLogy(); }
808 master->GetXaxis()->SetRangeUser(xmin, xmax);
809 master->SetTitle(title.c_str());
818 if (xLabel !=
"") {
master->GetXaxis()->SetTitle(xLabel.c_str());
master->GetXaxis()->CenterTitle(
true); }
819 if (yLabel !=
"") {
master->GetYaxis()->SetTitle(yLabel.c_str());
master->GetYaxis()->CenterTitle(
true); }
821 master->GetXaxis()->SetMoreLogLabels((logx == 1 &&
log10(xmax/xmin) < 2) ||
822 (logx > 1 && (xmax-xmin) < 2));
824 master->GetYaxis()->SetMoreLogLabels( logy &&
log10(ymax/ymin) < 2);
825 master->GetYaxis()->SetNoExponent ( logy &&
log10(ymax/ymin) < 2);
828 master->SetNdivisions(i->second, i->first.c_str());
831 if (xTimeFormat !=
"") {
833 master->GetXaxis()->SetTimeDisplay(1);
835 if (xTimeFormat ==
"utc") {
836 master->GetXaxis()->SetTimeFormat(
"#splitline{}{#splitline{%d-%m-%y}{ %H:%M}}");
837 master->GetXaxis()->SetTimeOffset(0.0,
"gmt");
838 }
else if (xTimeFormat ==
"UTC") {
839 master->GetXaxis()->SetTimeFormat(
"%d-%m-%y");
840 master->GetXaxis()->SetTimeOffset(0.0,
"gmt");
842 master->GetXaxis()->SetTimeFormat(xTimeFormat.c_str());
846 master->Draw(option.c_str());
851 if (dynamic_cast<TH1*>(i->get()) !=
master) {
852 if (setLogX<TH1> (i->get())) {}
853 else if (setLogX<TF1> (i->get())) {}
854 else if (setLogX<TGraphErrors>(i->get())) {}
855 else if (setLogX<TGraph> (i->get())) {}
856 else if (setLogX<TMultiGraph> (i->get())) {}
857 else if (setLogX<TLine> (i->get())) {}
858 else if (setLogX<TEllipse> (i->get())) {}
863 if (grid.count(
'x') || grid.count(
'X')) { gPad->SetGridx(); }
864 if (grid.count(
'y') || grid.count(
'Y')) { gPad->SetGridy(); }
867 gStyle->SetOptStat(stats);
869 gStyle->SetOptFit(kFALSE);
874 DEBUG(
"Draw " << (*i)->GetName() <<
' ' << (*i)->GetTitle() << endl);
876 string buffer(option);
884 TF1* f1 =
dynamic_cast<TF1*
> (i->get());
885 TGraph* g1 =
dynamic_cast<TGraph*
> (i->get());
886 TMultiGraph* q1 =
dynamic_cast<TMultiGraph*
>(i->get());
893 if (g1->GetN() > 1 && drawLine)
901 for (TIter i1(q1->GetListOfGraphs()); TGraph* gi =
dynamic_cast<TGraph*
>(i1()); ) {
903 string zbuf = buffer;
905 if (gi->GetN() > 1 && drawLine)
910 gi->Draw(zbuf.c_str());
915 (*i).Draw(buffer.c_str());
921 if (legend.is_valid()) {
923 Ssiz_t height = listOfObjects.size();
927 width = max(width, getWidth(i->getLabel()));
930 TLegend* lg =
getLegend(width, height, legend.location, legend.factor);
933 if (dynamic_cast<TMarker*>(i->get()) == NULL &&
934 dynamic_cast<TLine*> (i->get()) == NULL &&
935 dynamic_cast<TText*> (i->get()) == NULL) {
936 lg->AddEntry(*i,
" " + i->getLabel(),
isTAttLine(*i) ?
"L" :
"LPF");
953 return (
master != NULL ? 0 : 1);
Utility class to parse command line options.
then echo Test string reversed by master(hit< return > to continue)." $DIR/JProcess -c "$DIR/JEcho" -rC fi if (( 1 ))
std::string getLabel(const JLocation &location)
Get module label for monitoring and other applications.
#define MAKE_CSTRING(A)
Make C-string.
Empty structure for specification of parser element that is initialised (i.e. does not require input)...
then fatal Wrong number of arguments fi set_variable STRING $argv[1] set_variable DETECTORXY_TXT $WORKDIR $DETECTORXY_TXT tail read X Y CHI2 RMS printf optimum n $X $Y $CHI2 $RMS awk v Y
const JPolynome f1(1.0, 2.0, 3.0)
Function.
bool isTAttLine(const TObject *object)
Get drawing option of TH1.
void setLogarithmicX(TList *list)
Make x-axis of objects in list logarithmic (e.g. after using log10()).
T & getInstance(const T &object)
Get static instance from temporary object.
#define make_field(A,...)
macro to convert parameter to JParserTemplateElement object
set_variable E_E log10(E_{fit}/E_{#mu})"
TLegend * getLegend(const Int_t width, const Int_t height, const std::string option, const Double_t factor=1.0)
Get legend.
static const char LABEL_TERMINATOR
label terminator
void setRange(double &xmin, double &xmax, const bool logx)
Set axis range.
Auxiliary class to handle multiple boolean-like I/O.
bool isTObject(const TKey *key)
Check if given key corresponds to a TObject.
no fit printf nominal n $STRING awk v X
TDirectory * getDirectory(const JRootObjectID &id)
Get TDirectory pointer.
do set_variable MODULE getModule a $WORKDIR detector_a datx L $STRING JEditDetector a $WORKDIR detector_a datx M $MODULE setz o $WORKDIR detector_a datx JEditDetector a $WORKDIR detector_b datx M $MODULE setz o $WORKDIR detector_b datx done echo Output stored at $WORKDIR detector_a datx and $WORKDIR tripod_a txt JDrawDetector2D a $WORKDIR detector_a datx a $WORKDIR detector_b datx L BL o detector $FORMAT $BATCH JDrawDetector2D T $WORKDIR tripod_a txt T $WORKDIR tripod_b txt L BL o tripod $FORMAT $BATCH JCompareDetector a $WORKDIR detector_a datx b $WORKDIR detector_b datx o $WORKDIR abc root &dev null for KEY in X Y Z
#define DEBUG(A)
Message macros.
Double_t g1(const Double_t x)
Function.