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