Belle II Software development
RoughCDCStateFilter.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/trackFindingCDC/numerics/Weight.h>
13#include <string>
14
15namespace Belle2 {
20 class ModuleParamList;
21
24 public:
26 TrackFindingCDC::Weight operator()(const BaseCDCStateFilter::Object& pair) final;
27
29 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
30
31 private:
34 };
35
36}
The Module parameter list class.
A very rough filter for all CDC states.
double m_maximalHitDistance
maximal distance from track to trajectory (in XY)
TrackFindingCDC::Weight operator()(const BaseCDCStateFilter::Object &pair) final
return 1 if distance < m_maximalHitDistance, NAN otherwise
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the parameters of the sub findlets.
STL class.
TrackFindingCDC::Filter< std::pair< const CDCCKFPath *, CDCCKFState * > > BaseCDCStateFilter
Base filter for CKF CDC states.
Abstract base class for different kinds of events.