Belle II Software development
CKFToPXDResult.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/pxd/entities/CKFToPXDState.h>
11
12namespace Belle2 {
17 class RecoTrack;
18 class SpacePoint;
19
21 class CKFToPXDResult : public CKFResult<RecoTrack, SpacePoint> {
24 public:
27
29 void addToRecoTrack(RecoTrack& recoTrack) const;
30 };
31
32}
CKFResult(const std::vector< TrackFindingCDC::WithWeight< const AState * > > &path, const genfit::MeasuredStateOnPlane &mSoP)
Definition CKFResult.h:40
CKFToPXDResult(const std::vector< TrackFindingCDC::WithWeight< const CKFToPXDState * > > &path)
Constructor using a path.
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.