Belle II Software  release-08-01-10
SVDIntercept.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #pragma once
10 
11 #include <tracking/dataobjects/VXDIntercept.h>
12 
13 namespace Belle2 {
22  class SVDIntercept : public VXDIntercept {
23 
24  public:
27 
28  double getUprime() const { return m_Uprime; }
29  double getVprime() const { return m_Vprime; }
31  void setUprime(double user_Uprime) { m_Uprime = user_Uprime; }
32  void setVprime(double user_Vprime) { m_Vprime = user_Vprime; }
34  private:
35 
36  double m_Uprime = 0;
37  double m_Vprime = 0;
41  };
43 }
SVDIntercept stores the U,V coordinates and uncertainties of the intersection of a track with an SVD ...
Definition: SVDIntercept.h:22
double getVprime() const
return the V direction tangent of the track extrapolated to the sensor
Definition: SVDIntercept.h:29
ClassDef(SVDIntercept, 4)
Needed to make the ROOT object storable.
SVDIntercept()
dummy constructor to silence cpp-check
Definition: SVDIntercept.h:26
double m_Vprime
V direction tangent of the track extrapolated to the sensor.
Definition: SVDIntercept.h:37
void setUprime(double user_Uprime)
set the U direction tangent of the track extrapolated to the sensor
Definition: SVDIntercept.h:31
double getUprime() const
return the U direction tangent of the track extrapolated to the sensor
Definition: SVDIntercept.h:28
double m_Uprime
U direction tangent of the track extrapolated to the sensor.
Definition: SVDIntercept.h:36
void setVprime(double user_Vprime)
set the V direction tangent of the track extrapolated to the sensor
Definition: SVDIntercept.h:32
VXDIntercept stores the U,V coordinates and uncertainties of the intersection of a track with a VXD s...
Definition: VXDIntercept.h:23
Abstract base class for different kinds of events.