Belle II Software  release-08-01-10
skimCrossTalkEventsModule Class Reference
Inheritance diagram for skimCrossTalkEventsModule:
Collaboration diagram for skimCrossTalkEventsModule:

Public Member Functions

def event (self)
 

Detailed Description

a basf2 pythin module to skim SVD xTalk events

Definition at line 30 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 35 of file crossTalkSkim_util.py.

35  def event(self):
36  """
37  check if the xTalk flag is set and return 1 in this case
38  """
39 
40  svdEventInfo = Belle2.PyStoreObj('SVDEventInfo')
41 
42  if svdEventInfo.isCrossTalkEvent():
43 
44  self.return_value(1)
45 
46  else:
47 
48  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: