Belle II Software development
PhiTrackRelationFilter.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#pragma once
9
10#include <tracking/trackFindingCDC/filters/trackRelation/BaseTrackRelationFilter.h>
11
12#include <string>
13
14namespace Belle2 {
19 class ModuleParamList;
20
21 namespace TrackingUtilities {
22 class CDCTrack;
23 }
24 namespace TrackFindingCDC {
25
28
29 private:
32
33 public:
35 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
36
38 TrackingUtilities::Weight operator()(const TrackingUtilities::CDCTrack& fromTrack,
39 const TrackingUtilities::CDCTrack& toTrack) final;
40
41 private:
44 };
45 }
47}
The Module parameter list class.
Relation filter that lets only possibilities with small phi distance pass.
double m_param_maximalPhiDistance
Parameter : The maximal deviation in phi between the trajectories of the track.
TrackingUtilities::Weight operator()(const TrackingUtilities::CDCTrack &fromTrack, const TrackingUtilities::CDCTrack &toTrack) final
Implementation of the phi calculation.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Export all parameters.
BaseTrackRelationFilter Super
Type of the super class.
Class representing a sequence of three dimensional reconstructed hits.
Definition CDCTrack.h:39
Abstract base class for different kinds of events.