Belle II Software development
CDCWireHitSegment.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
12#include <vector>
13
14namespace Belle2 {
19 namespace TrackFindingCDC {
20 class CDCWireHit;
21 class CDCWire;
22
24 class CDCWireHitSegment : public CDCSegment<const CDCWireHit*> {
25
26 public:
28 std::vector<const CDCWire*> getWireSegment() const;
29
30 };
31
32 }
34}
A sequence of hits limited to one superlayer.
Definition: CDCSegment.h:26
A segment consisting of two dimensional reconsturcted hits.
std::vector< const CDCWire * > getWireSegment() const
Getter for the vector of wires the hits of this segment are based on in the same order.
Abstract base class for different kinds of events.