Belle II Software development
SetAsideSimHits Class Reference
Inheritance diagram for SetAsideSimHits:

Public Member Functions

def __init__ (self)
 
def event (self)
 

Public Attributes

 selected_sensorID
 selected sensor info
 

Detailed Description

Set aside all SimHits on a selected sensor/side to create
    signal/background collisions.

Definition at line 41 of file test_mixing_overlay_equivalence.py.

Constructor & Destructor Documentation

◆ __init__()

def __init__ (   self)
initialize python module

Definition at line 45 of file test_mixing_overlay_equivalence.py.

45 def __init__(self):
46 '''initialize python module'''
47 super().__init__()
48
49
50 self.selected_sensorID = Belle2.VxdID(3, 1, 1)
51
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:33

Member Function Documentation

◆ event()

def event (   self)
event

Definition at line 52 of file test_mixing_overlay_equivalence.py.

52 def event(self):
53 '''event'''
54 global xsimhits
55 storesimhits = Belle2.PyStoreArray("SVDSimHits")
56 for h in storesimhits:
57 if h.getSensorID == self.selected_sensorID:
58 xsimhits.append(h)
59
60
A (simplified) python wrapper for StoreArray.
Definition: PyStoreArray.h:72

Member Data Documentation

◆ selected_sensorID

selected_sensorID

selected sensor info

Definition at line 50 of file test_mixing_overlay_equivalence.py.


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