Belle II Software development
ComparisonNTuple Class Reference
Inheritance diagram for ComparisonNTuple:
NTuple JsonBase

Public Member Functions

 __init__ (self, title, contact=None, description=None, check=None, is_expert=None, json_file_path=None)
 

Public Attributes

 title = title
 Text used as title for the ntuple item.
 
 contact = contact
 name of contact person
 
 json_file_path = json_file_path
 path to the json file which contains the individual numbers of the ntuple (must be relative to html dir!)
 
 is_expert = is_expert
 true if this is marked as an expert-only ntuple list
 
 description = description
 telling description for this ntuple
 
 check = check
 what should be checked for in this ntuple ?
 

Detailed Description

Comparison outcome for NTuples

Definition at line 450 of file json_objects.py.

Constructor & Destructor Documentation

◆ __init__()

__init__ ( self,
title,
contact = None,
description = None,
check = None,
is_expert = None,
json_file_path = None )
Create a new ComparisonNTuple object and fill all members

Definition at line 456 of file json_objects.py.

464 ):
465 """
466 Create a new ComparisonNTuple object and fill all members
467 """
468
469 # todo: move more into the base class
470 super().__init__(
471 is_expert=is_expert, description=description, check=check
472 )
473
474 self.title = title
475
476 self.contact = contact
477
479 self.json_file_path = json_file_path
480
481

Member Data Documentation

◆ check

check = check
inherited

what should be checked for in this ntuple ?

Definition at line 217 of file json_objects.py.

◆ contact

contact = contact

name of contact person

Definition at line 476 of file json_objects.py.

◆ description

description = description
inherited

telling description for this ntuple

Definition at line 215 of file json_objects.py.

◆ is_expert

is_expert = is_expert
inherited

true if this is marked as an expert-only ntuple list

Definition at line 213 of file json_objects.py.

◆ json_file_path

json_file_path = json_file_path

path to the json file which contains the individual numbers of the ntuple (must be relative to html dir!)

Definition at line 479 of file json_objects.py.

◆ title

title = title

Text used as title for the ntuple item.

Definition at line 474 of file json_objects.py.


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