Belle II Software  release-05-02-19
AllTrackRelationFilter.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Oliver Frost *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <tracking/trackFindingCDC/filters/trackRelation/BaseTrackRelationFilter.h>
13 
14 namespace Belle2 {
19  namespace TrackFindingCDC {
20 
22  class AllTrackRelationFilter : public BaseTrackRelationFilter {
23 
24  private:
27 
28  public:
30  Weight operator()(const CDCTrack& fromTrack, const CDCTrack& toTrack) final;
31  };
32  }
34 }
Belle2::TrackFindingCDC::CDCTrack
Class representing a sequence of three dimensional reconstructed hits.
Definition: CDCTrack.h:51
Belle2::TrackFindingCDC::BaseTrackRelationFilter::BaseTrackRelationFilter
BaseTrackRelationFilter()
Default constructor.
Belle2::TrackFindingCDC::AllTrackRelationFilter::Super
BaseTrackRelationFilter Super
Type of the super class.
Definition: AllTrackRelationFilter.h:34
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::AllTrackRelationFilter::operator()
Weight operator()(const CDCTrack &fromTrack, const CDCTrack &toTrack) final
Implementation accepting all possible neighbors.
Definition: AllTrackRelationFilter.cc:17