ATLAS Offline Software
Public Member Functions | Static Public Member Functions | Public Attributes | List of all members
python.physvalPostProcessingTools.HistogramBlackList Class Reference
Collaboration diagram for python.physvalPostProcessingTools.HistogramBlackList:

Public Member Functions

def __init__ (self, toDelete)
 
def __call__ (self, root_file)
 

Static Public Member Functions

def from_yaml (fragment)
 

Public Attributes

 toDelete
 

Detailed Description

Definition at line 432 of file physvalPostProcessingTools.py.

Constructor & Destructor Documentation

◆ __init__()

def python.physvalPostProcessingTools.HistogramBlackList.__init__ (   self,
  toDelete 
)

Definition at line 433 of file physvalPostProcessingTools.py.

433  def __init__(self, toDelete):
434  self.toDelete = toDelete
435 

Member Function Documentation

◆ __call__()

def python.physvalPostProcessingTools.HistogramBlackList.__call__ (   self,
  root_file 
)

Definition at line 436 of file physvalPostProcessingTools.py.

436  def __call__(self, root_file):
437  find_histo(root_file, self.toDelete, should_delete=True)
438 

◆ from_yaml()

def python.physvalPostProcessingTools.HistogramBlackList.from_yaml (   fragment)
static

Definition at line 440 of file physvalPostProcessingTools.py.

440  def from_yaml(fragment):
441  return HistogramBlackList(
442  toDelete=fragment["toDelete"]
443  )

Member Data Documentation

◆ toDelete

python.physvalPostProcessingTools.HistogramBlackList.toDelete

Definition at line 434 of file physvalPostProcessingTools.py.


The documentation for this class was generated from the following file:
python.processes.powheg.ZZj_MiNNLO.ZZj_MiNNLO.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZj_MiNNLO.py:18
python.physvalPostProcessingTools.find_histo
def find_histo(root_file, path, should_delete=False)
— HELPER — ###
Definition: physvalPostProcessingTools.py:10