Belle II Software development
CKFToSVDResult.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#include <tracking/ckf/general/entities/CKFResult.h>
10#include <tracking/ckf/svd/entities/CKFToSVDState.h>
11
12#include <tracking/trackFindingCDC/numerics/WithWeight.h>
13
14namespace Belle2 {
19 class RecoTrack;
20 class SpacePoint;
21
23 class CKFToSVDResult : public CKFResult<RecoTrack, SpacePoint> {
26
27 public:
30
32 void addToRecoTrack(RecoTrack& recoTrack) const;
33
35 const RecoTrack* getRelatedSVDRecoTrack() const;
36
37 private:
40 };
41
42}
CKFResult(const std::vector< TrackFindingCDC::WithWeight< const AState * > > &path, const genfit::MeasuredStateOnPlane &mSoP)
Definition CKFResult.h:40
CKFToSVDResult(const std::vector< TrackFindingCDC::WithWeight< const CKFToSVDState * > > &path)
Constructor using a path.
const RecoTrack * m_relatedSVDRecoTrack
The related SVD track, if we go along one of them (or a nullptr)
const RecoTrack * getRelatedSVDRecoTrack() const
Return the related SVD track, if we go along one of them.
void addToRecoTrack(RecoTrack &recoTrack) const
Called in the exporter findlet for adding this to a already created reco track.
CKFResult< RecoTrack, SpacePoint > Super
The parent class.
This is the Reconstruction Event-Data Model Track.
Definition RecoTrack.h:79
SpacePoint typically is build from 1 PXDCluster or 1-2 SVDClusters.
Definition SpacePoint.h:42
A mixin class to attach a weight to an object.
Definition WithWeight.h:24
Abstract base class for different kinds of events.