Belle II Software  release-08-01-10
CDCRLWireHitSegment.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/CDCRLWireHit.h>
12 
13 #include <vector>
14 
15 namespace Belle2 {
20  namespace TrackFindingCDC {
21  class CDCWire;
22 
24  class CDCRLWireHitSegment : public CDCSegment<CDCRLWireHit> {
25  public:
28 
30  std::vector<const CDCWire*> getWireSegment() const;
31  };
32  }
34 }
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.
CDCRLWireHitSegment()
Default constructor for ROOT compatibility.
A sequence of hits limited to one superlayer.
Definition: CDCSegment.h:26
Abstract base class for different kinds of events.