Dear all,
I’m building the model for a fit using the RooDecay model:
self.function_pdf = ROOT.RooDecay("function_pdf", "function_pdf",
delta_t,
tau,
resolution_function,
ROOT.RooDecay.DoubleSided)
When I call the method:
function_pdf.getNorm(ROOT.RooArgSet(delta_t))
I expected to get 1.0 but it wasn’t.
Isn’t the pdf returned by RooDecay normalized?
Thank you.