def Frame(*args, **kwargs): # Redefinition of `Frame` for keyword arguments. # The keywords must correspond to the CmdArg of the `Frame` function. from cppyy.gbl import RooFit args, kwargs = _kwargs_to_roocmdargs(*args, **kwargs) return RooFit._Frame(*args, **kwargs)
def Frame(*args, **kwargs): r"""The Frame() function is pythonized with the command argument pythonization. The keywords must correspond to the CmdArg of the function. """ # Redefinition of `Frame` for keyword arguments. from cppyy.gbl import RooFit args, kwargs = _kwargs_to_roocmdargs(*args, **kwargs) return RooFit._Frame(*args, **kwargs)