Hello,
My question is about Chebyshev polynomials.
For invariant mass fit I am doing gaus + chebyshev fit and bellow is the background determination part from my script.
Construct background pdf
a0 = ROOT.RooRealVar(“a0”, “a0”, -0.1, -10, 10)
a1 = ROOT.RooRealVar(“a1”, “a1”, 0.004, -10, 10)
a2 = ROOT.RooRealVar(“a2”, “a2”, 0.008, -10, 10)
param = ROOT.RooArgList()
param.add(a0)
param.add(a1)
param.add(a2)
background = ROOT.RooChebychev(“background”, “px”, part_d0_M, ROOT.RooArgList(a0,a1))
My question is if I do (a0,a1) it’s supposed to be a line(right?) fit for background, so what is the a0 parameter by itself? Is it like a degree? If I take only a0 for my fit what will it do with background?
I’ll be very thankful if someone can explain me this.
