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 TrackFindingCDC {
22 class CDCTrack;
23
26
27 private:
30
31 public:
33 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
34
36 Weight operator()(const CDCTrack& fromTrack, const CDCTrack& toTrack) final;
37
38 private:
41 };
42 }
44}
The Module parameter list class.
Base class for filtering the neighborhood of tracks.
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:41
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.
Weight operator()(const CDCTrack &fromTrack, const CDCTrack &toTrack) final
Implementation of the phi calculation.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Export all parameters.
Abstract base class for different kinds of events.