Belle II Software development
StoreContent Class Reference

basf2 (Belle II Analysis Software Framework) # Author: The Belle II Collaboration # # See git log for contributors and copyright holders. More...

Public Member Functions

def __init__ (self, name, number)
 

Public Attributes

 name
 The name of the store content.
 
 number
 The number of items in this store content.
 

Detailed Description

basf2 (Belle II Analysis Software Framework) # Author: The Belle II Collaboration # # See git log for contributors and copyright holders.

# This file is licensed under LGPL-3.0, see LICENSE.md. #

Data class for an entry in a store content list.

Definition at line 8 of file entities.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self,
  name,
  number 
)
Create a new entry in a Store Content List.

Parameters:
  name: The name of the store content.
  number: The number of items in this store content.

Definition at line 13 of file entities.py.

13 def __init__(self, name, number):
14 """
15 Create a new entry in a Store Content List.
16
17 Parameters:
18 name: The name of the store content.
19 number: The number of items in this store content.
20 """
21
22 self.name = name
23
24 self.number = number
25
26

Member Data Documentation

◆ name

name

The name of the store content.

Definition at line 22 of file entities.py.

◆ number

number

The number of items in this store content.

Definition at line 24 of file entities.py.


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