Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_ProdPdf():
import ROOT
df = get_test_df()
assert isinstance(df, pd.DataFrame)
bkg = Chebychev(('mbc', 0, 1))
sig = Gauss(('mbc', 0, 1))
pdf = sig*bkg
assert isinstance(pdf, ProdPdf)
assert isinstance(pdf.roo_pdf, ROOT.RooAbsPdf)