Belle II Software development
TwoHitVirtualIPQIFilter.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/vxdHoughTracking/filters/pathFilters/BasePathFilter.h>
11#include <tracking/spacePointCreation/SpacePoint.h>
12
13namespace Belle2 {
19
20 namespace vxdHoughTracking {
21
23 class TwoHitVirtualIPQIFilter : public BasePathFilter {
24 public:
27 TrackFindingCDC::Weight operator()(const BasePathFilter::Object& pair) override;
29 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
30
32 void initialize() override;
34 void beginRun() override;
35
36 private:
39
42 std::string m_EstimationMethod = "helixFit";
44 std::string m_MCRecoTracksStoreArrayName = "MCRecoTracks";
46 std::unique_ptr<QualityEstimatorBase> m_estimator;
49 };
50
51 }
53}
The Module parameter list class.
BaseClass for QualityEstimators.
SpacePoint typically is build from 1 PXDCluster or 1-2 SVDClusters.
Definition SpacePoint.h:42
std::pair< const std::vector< TrackFindingCDC::WithWeight< const VXDHoughState * > >, VXDHoughState * > Object
Definition Filter.dcl.h:35
Filter for two hits plus a virtual IP using QualityEstimators.
bool m_MCStrictQualityEstimator
Only required for MCInfo method.
void initialize() override
initialize quality estimator
std::string m_EstimationMethod
Identifier which estimation methsod to use.
TrackFindingCDC::Weight operator()(const BasePathFilter::Object &pair) override
Return the weight based on the quality estimator.
void beginRun() override
set BField value for estimator
std::string m_MCRecoTracksStoreArrayName
sets the name of the expected StoreArray containing MCRecoTracks. Only required for MCInfo method
std::unique_ptr< QualityEstimatorBase > m_estimator
pointer to the selected QualityEstimator
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the parameters.
STL class.
Abstract base class for different kinds of events.