Belle II Software development
CDCTangentSegment.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/eventdata/segments/CDCSegment.h>
11#include <tracking/trackFindingCDC/eventdata/hits/CDCTangent.h>
12
13#include <vector>
14
15namespace Belle2 {
20 namespace TrackFindingCDC {
21 class CDCFacet;
22
24 class CDCTangentSegment : public CDCSegment<CDCTangent> {
25
26 public:
28 static CDCTangentSegment condense(const std::vector<const CDCFacet* >& facetPath);
29 };
30 }
32}
A sequence of hits limited to one superlayer.
Definition: CDCSegment.h:26
A segment consisting of adjacent tangents.
static CDCTangentSegment condense(const std::vector< const CDCFacet * > &facetPath)
Takes all distinct tangents from the facets in the path - Note! there is no particular order of the t...
Abstract base class for different kinds of events.