Belle II Software  release-05-02-19
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 27 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 32 of file crossTalkSkim_util.py.

32  def event(self):
33  """
34  check if the xTalk flag is set and return 1 in this case
35  """
36 
37  svdEventInfo = Belle2.PyStoreObj('SVDEventInfo')
38 
39  if svdEventInfo.isCrossTalkEvent():
40 
41  self.return_value(1)
42 
43  else:
44 
45  self.return_value(0)

The documentation for this class was generated from the following file:
Belle2::PyStoreObj
a (simplified) python wrapper for StoreObjPtr.
Definition: PyStoreObj.h:69
ClusterEfficiency.ClusterEfficiency.event
def event(self)
Definition: ClusterEfficiency.py:146