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/trackingUtilities/eventdata/segments/CDCSegment.h>
11
12#include <vector>
13
14namespace Belle2 {
19 namespace CDC {
20 class CDCWire;
21 }
22 namespace TrackingUtilities {
23 class CDCWireHit;
24
26 class CDCWireHitSegment : public CDCSegment<const CDCWireHit*> {
27
28 public:
30 std::vector<const CDC::CDCWire*> getWireSegment() const;
31
32 };
33
34 }
36}
Class representing a sense wire in the central drift chamber.
Definition CDCWire.h:50
A segment consisting of two dimensional reconstructed hits.
std::vector< const CDC::CDCWire * > getWireSegment() const
Getter for the vector of wires the hits of this segment are based on in the same order.
Class representing a hit wire in the central drift chamber.
Definition CDCWireHit.h:58
Abstract base class for different kinds of events.