Jsroot unable to render saved TRatioPlot

Hello all,

I’ve implemented a simple website to display some canvas stored in a GitHub repo by using jsroot online. My approach is to create locally some .root files with TCanvas->SaveAs("name.root") and then push them to the repository.

However, I’ve added a TCanvas that contains a TRatioPlot residual figure but jsroot is unable to render the contents properly: only one of the pads is drawn and it is unreactive to any gestures (zooming, axis, etc). On the contrary, if I open the file locally and Draw()the canvas, everything works fine. This is the expected output:

The TCanvas I want to display is cFit in this location (it will open the online jsroot browser). These are the lines that create the canvas:

    // h: a TH1D* pointer
    // model: a custom fitting function
    // res: TFitResult
    auto* c {new TCanvas {TString::Format("cGF%d", cCount), title.c_str()}};
    // Create a legend
    auto* leg {new TLegend {0.5, 0.6, 0.9, 0.9}};
   
    auto* clone {(TH1D*)h->Clone()};
    clone->GetXaxis()->SetRangeUser(exmin, exmax);
    clone->SetStats(false);
    // Model pointer
    auto* ptr {new Fitters::Model {}};
    *ptr = model;
    // Wrap into TF1
    auto* tf1 {new TF1 {"fitfunc", [=](double* x, double* p) { return (*ptr)(x, p); }, exmin, exmax,
                        static_cast<int>(ptr->NPar())}};
    tf1->SetParameters(res.Parameters().data());
    tf1->SetNpx(2000);
    // And append to funtion list
    clone->GetListOfFunctions()->Clear();
    clone->GetListOfFunctions()->Add(tf1);
    // And ratio plot now!
    auto* ratio {new TRatioPlot {clone, "", &res}};
    ratio->SetH1DrawOpt("e");    // visualize errors for histogram
    ratio->SetGraphDrawOpt("p"); // same for residuals
    ratio->Draw();
    // std::cout << "Canvas : " << c << '\n';
    // std::cout << "up : " << ratio->GetUpperPad() << '\n';
    // std::cout << "low : " << ratio->GetLowerPad() << '\n';
    // std::cout << "gPad : " << gPad << '\n';
    // And draw the other things
    // ratio->GetUpperPad()->cd();
    // DrawGlobalFit(nullptr, hfits, leg, labels);
    c->cd();

Any help would be highly appreciated. Thanks in advance!

ROOT v6.32.02
Built for linuxx8664gcc on Jun 18 2024, 04:33:34
From tags/v6-32-02@v6-32-02
With c++ (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0

Hi,

Can you upload here ROOT file with such TRatioPlot.

Regards,
Sergey

Hi,

It’s this one:
dd.root (716,0 KB)

Thanks!

Hi,

You hit two problems in JSROOT, which are fixed now in master branch.

First was simple. JSROOT had bug concerning latex parsing which starts
with ^ symbol like ^{20} O(d,d)

Second was not TRatioPlot itself, but RooFit::FitResult object stored inside.
It was not properly handled by JSROOT I/O and therefore display of such incomplete
object was not possible.

Both problems can be detected in console output of the browser.
But now it should work. Like:

dd.root/cFit

dd.root/c0

dd.root/cFitter0

You can use JSROOT from git repository or from https://root.cern/js/dev/.

Fixes will be applied later to ROOT master, 6.34 and 6.32 branches.

Regards,
Sergey

Indeed, that solves the issue! Thank you :slight_smile:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.