JHUGen MELA  v2.4.1
Matrix element calculations as used in JHUGen. MELA is an important tool that was used for the Higgs boson discovery and for precise measurements of its structure and interactions. Please see the website https://spin.pha.jhu.edu/ and papers cited there for more details, and kindly cite those papers when using this code.
Public Member Functions | Private Attributes | List of all members
mela.Mela.MelaIO Class Reference
Inheritance diagram for mela.Mela.MelaIO:
Inheritance graph
[legend]
Collaboration diagram for mela.Mela.MelaIO:
Collaboration graph
[legend]

Public Member Functions

def __init__ (self, cppmelaio)
 
def __getattr__ (self, attr)
 
def getWeightedMEArray (self)
 
def getUnweightedMEArray (self)
 
def getPartonWeights (self)
 

Private Attributes

 __melaio
 

Detailed Description

Definition at line 334 of file mela.py.

Constructor & Destructor Documentation

◆ __init__()

def mela.Mela.MelaIO.__init__ (   self,
  cppmelaio 
)

Definition at line 335 of file mela.py.

335  def __init__(self, cppmelaio):
336  self.__melaio = cppmelaio

Member Function Documentation

◆ __getattr__()

def mela.Mela.MelaIO.__getattr__ (   self,
  attr 
)

Definition at line 337 of file mela.py.

337  def __getattr__(self, attr):
338  return getattr(self.__melaio, attr)

◆ getPartonWeights()

def mela.Mela.MelaIO.getPartonWeights (   self)

Definition at line 345 of file mela.py.

345  def getPartonWeights(self):
346  result = ROOT.getPartonWeights(self.__melaio)
347  return list(result.first), list(result.second)
348 
349  ghg2 = SelfDCoupling("selfDHggcoupl", 0, ROOT.py_gHIGGS_GG_2)

◆ getUnweightedMEArray()

def mela.Mela.MelaIO.getUnweightedMEArray (   self)

Definition at line 342 of file mela.py.

342  def getUnweightedMEArray(self):
343  result = ROOT.getUnweightedMEArray(self.__melaio)
344  return [list(_) for _ in result]

◆ getWeightedMEArray()

def mela.Mela.MelaIO.getWeightedMEArray (   self)

Definition at line 339 of file mela.py.

339  def getWeightedMEArray(self):
340  result = ROOT.getWeightedMEArray(self.__melaio)
341  return [list(_) for _ in result]

Member Data Documentation

◆ __melaio

mela.Mela.MelaIO.__melaio
private

Definition at line 336 of file mela.py.


The documentation for this class was generated from the following file: