Belle II Software development
BaseTrackRelationFilter.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/base/RelationFilter.dcl.h>
11
12#include <vector>
13
14namespace Belle2 {
19 namespace TrackFindingCDC {
20 class CDCTrack;
21
22 // Guard to prevent repeated instantiations
23 extern template class RelationFilter<const CDCTrack>;
24
27
28 public:
31
34
36 std::vector<const CDCTrack*> getPossibleTos(
37 const CDCTrack* from,
38 const std::vector<const CDCTrack*>& tracks) const final;
39 };
40 }
42}
Base class for filtering the neighborhood of tracks.
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:41
Base class for filtering the neighborhood of objects.
Abstract base class for different kinds of events.