Belle II Software development
Plot Class Reference
Inheritance diagram for Plot:
JsonBase ComparisonPlot

Public Member Functions

def __init__ (self, is_expert=False, description=None, check=None, contact=None, width=None, height=None, issue=None)
 

Public Attributes

 is_expert
 true if this is marked as an expert-only plot
 
 description
 telling description for this plot
 
 check
 What should be checked for in this plot ?
 
 contact
 Who is the contact person for this plot ?
 
 width
 width of the plot in pixels
 
 height
 height of the plot in pixels
 
 issue
 linked issues
 

Detailed Description

Wrapper for one specific plot.

Definition at line 162 of file json_objects.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  is_expert = False,
  description = None,
  check = None,
  contact = None,
  width = None,
  height = None,
  issue = None 
)
Create a new Plot object and fill all members

Reimplemented in ComparisonPlot.

Definition at line 168 of file json_objects.py.

177 ):
178 """
179 Create a new Plot object and fill all members
180 """
181
182
183 self.is_expert = is_expert
184
185 self.description = description
186
187 self.check = check
188
189 self.contact = contact
190
191 self.width = width
192
193 self.height = height
194
195 if not issue:
196 issue = []
197 self.issue = issue
198
199

Member Data Documentation

◆ check

check

What should be checked for in this plot ?

Definition at line 187 of file json_objects.py.

◆ contact

contact

Who is the contact person for this plot ?

Definition at line 189 of file json_objects.py.

◆ description

description

telling description for this plot

Definition at line 185 of file json_objects.py.

◆ height

height

height of the plot in pixels

Definition at line 193 of file json_objects.py.

◆ is_expert

is_expert

true if this is marked as an expert-only plot

Definition at line 183 of file json_objects.py.

◆ issue

issue

linked issues

Definition at line 197 of file json_objects.py.

◆ width

width

width of the plot in pixels

Definition at line 191 of file json_objects.py.


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