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

Public Member Functions

def initialize (self)
 
def event (self)
 

Public Attributes

 mc
 set MCParticles
 

Detailed Description

Reject tracks with bad combination of z0 and theta

Definition at line 70 of file z0_with_clone_suppression.py.

Member Function Documentation

◆ event()

def event (   self)
event function of Skim

Definition at line 78 of file z0_with_clone_suppression.py.

78  def event(self):
79  """event function of Skim"""
80  self.return_value(0)
81 
82  z0 = self.mc[0].getVertex().Z()
83 
84  vec = self.mc[0].getMomentum()
85  # skip the event if the track didn't reach SL0
86  if z_SL0[0] < z0 + r_SL0 / vec.Pt() * vec.Z() < z_SL0[1]:
87  self.return_value(1)
88 
89 

◆ initialize()

def initialize (   self)
Initialization of Skim

Definition at line 73 of file z0_with_clone_suppression.py.


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