Dear Experts,
is there a way to implement a custom binning for a RooRealVar. In particular I have a vector with bin edges and I’d like to force the binning into a RooRealVar.
For instance for a TH1D i would do
std::vector<double> bins;
TH1D* h = new TH1D("h", "h", bins.size()-1, bins.data());
is there such a functionality for a RooRealvar?
I read that there are similar funcionalities explained in Binning Tutorial but not really what I am looking for.
Thanks in advance
Elia