Belle II Software  release-08-01-10
BaseTrackRelationFilter.cc
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 #include <tracking/trackFindingCDC/filters/trackRelation/BaseTrackRelationFilter.h>
9 
10 #include <tracking/trackFindingCDC/filters/base/RelationFilter.icc.h>
11 
12 #include <vector>
13 
14 using namespace Belle2;
15 using namespace TrackFindingCDC;
16 
18 
20 
22 
23 std::vector<const CDCTrack*> BaseTrackRelationFilter::getPossibleTos(
24  const CDCTrack* from __attribute__((unused)),
25  const std::vector<const CDCTrack*>& tracks) const
26 {
27  // All tracks a possible - no geometric selection here.
28  return tracks;
29 }
std::vector< const CDCTrack * > getPossibleTos(const CDCTrack *from, const std::vector< const CDCTrack * > &tracks) const final
Reenforce that the full range of tracks is possible as no particular default is applicable.
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:41
Abstract base class for different kinds of events.