Belle II Software development
Distance3DNormed.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/trackFindingVXD/filterMap/filterFramework/SelectionVariable.h>
12#include <cmath>
13
14#define DISTANCE3DNORMED_NAME Distance3DNormed
15namespace Belle2 {
22 template <typename PointType >
23 class DISTANCE3DNORMED_NAME : public SelectionVariable< PointType, 2, double > {
24 public:
25
28
29
30
37 static double value(const PointType& outerHit, const PointType& innerHit)
38 {
39
40 double result =
41 (std::pow(outerHit.X() - innerHit.X(), 2)
42 + std::pow(outerHit.Y() - innerHit.Y(), 2))
43 /
44 (std::pow(outerHit.X() - innerHit.X(), 2)
45 + std::pow(outerHit.Y() - innerHit.Y(), 2)
46 + std::pow(outerHit.Z() - innerHit.Z(), 2));
47
48 return
49 (std::isnan(result) || std::isinf(result)) ? 0 : result;
50 }
51
52
53 };
54
56}
DataType Z() const
access variable Z (= .at(2) without boundary check)
Definition: B2Vector3.h:435
DataType X() const
access variable X (= .at(0) without boundary check)
Definition: B2Vector3.h:431
DataType Y() const
access variable Y (= .at(1) without boundary check)
Definition: B2Vector3.h:433
This is the specialization for SpacePoints with returning floats, where value calculates the normed d...
PUT_NAME_FUNCTION(DISTANCE3DNORMED_NAME)
is replaced by "static const std:string name(void)" frunction which returns name of the Class
static double value(const PointType &outerHit, const PointType &innerHit)
calculates the normed distance between the hits (3D), returning unit: none.
Base class of the selection variable objects used for pair filtering.
B2Vector3D outerHit(0, 0, 0)
testing out of range behavior
Abstract base class for different kinds of events.