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

Public Member Functions

def event (self)
 

Detailed Description

a basf2 pythin module to skim SVD xTalk events

Definition at line 29 of file crossTalkSkim_util.py.

Member Function Documentation

◆ event()

def event (   self)
check if the xTalk flag is set and return 1 in this case

Definition at line 34 of file crossTalkSkim_util.py.

34 def event(self):
35 """
36 check if the xTalk flag is set and return 1 in this case
37 """
38
39 svdEventInfo = Belle2.PyStoreObj('SVDEventInfo')
40
41 if svdEventInfo.isCrossTalkEvent():
42
43 self.return_value(1)
44
45 else:
46
47 self.return_value(0)
a (simplified) python wrapper for StoreObjPtr.
Definition: PyStoreObj.h:67

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