Belle II Software development
ExtrapolateAndUpdateCDCStateFilter.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/ckf/cdc/filters/states/BaseCDCStateFilter.h>
11
12#include <tracking/ckf/general/utilities/Advancer.h>
13#include <tracking/ckf/general/utilities/KalmanStepper.h>
14#include <tracking/trackFindingCDC/numerics/Weight.h>
15
16#include <string>
17
18namespace Belle2 {
23 class ModuleParamList;
24
27 public:
29
31 TrackFindingCDC::Weight operator()(const BaseCDCStateFilter::Object& pair) final;
32
34 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
35
36 private:
39
42 };
44}
Helper findlet for performing an extrapolation of a mSoP of one plane to another plane using the repr...
Definition: Advancer.h:37
An extrapolateAndUpdate filter for all CDC states.
TrackFindingCDC::Weight operator()(const BaseCDCStateFilter::Object &pair) final
Extrapolate along the path (pair.first) to the CDC wireHit-state (pair.second). Return 1/chi2 if Ok,...
KalmanStepper< 1 > m_updater
Kalman filter updater.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the parameters of the sub findlets.
Class to bundle all algorithms needed for the kalman update procedure.
Definition: KalmanStepper.h:34
The Module parameter list class.
Base class for filters on a generic object type.
Definition: Filter.dcl.h:31
AObject Object
Type of the object to be analysed.
Definition: Filter.dcl.h:35
Abstract base class for different kinds of events.