Belle II Software  release-05-01-25
SensorSVDPairFilter.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, Christian Wessel *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <tracking/ckf/svd/filters/relations/BaseSVDPairFilter.h>
13 #include <tracking/ckf/svd/entities/CKFToSVDState.h>
14 
15 namespace Belle2 {
20  class SensorSVDPairFilter : public BaseSVDPairFilter {
22  public:
24  TrackFindingCDC::Weight operator()(const std::pair<const CKFToSVDState*, const CKFToSVDState*>& relation) override;
26  void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
27 
28  private:
30  double m_param_PhiRecoTrackToHitCut = 0.5;
32  double m_param_PhiHitHitCut = (M_PI - 2.);
33  };
35 }
Belle2::SensorSVDPairFilter::exposeParameters
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the parameters.
Definition: SensorSVDPairFilter.cc:78
Belle2::SensorSVDPairFilter::m_param_PhiHitHitCut
double m_param_PhiHitHitCut
Pre-filter relations in theta between hit states.
Definition: SensorSVDPairFilter.h:40
Belle2::SensorSVDPairFilter::m_param_PhiRecoTrackToHitCut
double m_param_PhiRecoTrackToHitCut
Pre-filter relations in phi between seed states and hit states.
Definition: SensorSVDPairFilter.h:38
Belle2::BaseSVDPairFilter
TrackFindingCDC::Filter< std::pair< const CKFToSVDState *, const CKFToSVDState * > > BaseSVDPairFilter
Base filter for CKF SVD states.
Definition: BaseSVDPairFilter.h:29
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::SensorSVDPairFilter::operator()
TrackFindingCDC::Weight operator()(const std::pair< const CKFToSVDState *, const CKFToSVDState * > &relation) override
Return the weight based on layer.
Definition: SensorSVDPairFilter.cc:22