Belle II Software  release-05-01-25
StereoHitTrackAdder.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2016 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Nils Braun *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 #include <tracking/trackFindingCDC/collectors/adders/AdderInterface.h>
12 
13 namespace Belle2 {
18  namespace TrackFindingCDC {
19  class CDCTrack;
20  class CDCRLWireHit;
21 
23  class StereoHitTrackAdder : public AdderInterface<CDCTrack, CDCRLWireHit> {
24  private:
26  void add(CDCTrack& track, const CDCRLWireHit& hit, Weight weight) override;
27  };
28  }
30 }
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::TrackFindingCDC::StereoHitTrackAdder::add
void add(CDCTrack &track, const CDCRLWireHit &hit, Weight weight) override
Add the matched hits to the track and set the taken flag correctly.
Definition: StereoHitTrackAdder.cc:13