Belle II Software development
BaseSegmentTripleRelationFilter.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 CDCSegmentTriple;
21
22 // Guard to prevent repeated instantiations
23 extern template class RelationFilter<const CDCSegmentTriple>;
24
27
28 public:
31
34
36 std::vector<const CDCSegmentTriple*> getPossibleTos(
37 const CDCSegmentTriple* from,
38 const std::vector<const CDCSegmentTriple*>& segmentTriples) const final;
39 };
40 }
42}
Base class for filtering the neighborhood of segment triples.
Class representing a triple of reconstructed segements in adjacent superlayer.
Base class for filtering the neighborhood of objects.
Abstract base class for different kinds of events.