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

Public Member Functions

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

Public Attributes

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

Detailed Description

Wrapper for one specific plot.

Definition at line 162 of file json_objects.py.

Constructor & Destructor Documentation

◆ __init__()

__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

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 if not issue:
195 issue = []
196
197 self.issue = issue
198
199

Member Data Documentation

◆ check

check = check

What should be checked for in this plot ?

Definition at line 187 of file json_objects.py.

◆ contact

contact = contact

Who is the contact person for this plot ?

Definition at line 189 of file json_objects.py.

◆ description

description = description

telling description for this plot

Definition at line 185 of file json_objects.py.

◆ height

height = height

height of the plot in pixels

Definition at line 193 of file json_objects.py.

◆ is_expert

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 = issue

linked issues

Definition at line 197 of file json_objects.py.

◆ width

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: