Belle II Software  release-05-01-25
CKFToPXDResult.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2017 - 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/ckf/general/entities/CKFResult.h>
12 #include <tracking/ckf/pxd/entities/CKFToPXDState.h>
13 
14 namespace Belle2 {
19  class RecoTrack;
20  class SpacePoint;
21 
23  class CKFToPXDResult : public CKFResult<RecoTrack, SpacePoint> {
25  using Super = CKFResult<RecoTrack, SpacePoint>;
26  public:
28  explicit CKFToPXDResult(const std::vector<TrackFindingCDC::WithWeight<const CKFToPXDState*>>& path);
29 
31  void addToRecoTrack(RecoTrack& recoTrack) const;
32  };
34 }
Belle2::RecoTrack
This is the Reconstruction Event-Data Model Track.
Definition: RecoTrack.h:78
Belle2::CKFToPXDResult::addToRecoTrack
void addToRecoTrack(RecoTrack &recoTrack) const
Called in the exporter findlet for adding this to a already created reco track.
Definition: CKFToPXDResult.cc:27
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::CKFToPXDResult::CKFToPXDResult
CKFToPXDResult(const std::vector< TrackFindingCDC::WithWeight< const CKFToPXDState * >> &path)
Constructor using a path.
Definition: CKFToPXDResult.cc:21
Belle2::CKFToPXDResult::Super
CKFResult< RecoTrack, SpacePoint > Super
The parent class.
Definition: CKFToPXDResult.h:33