Belle II Software development
RoughCDCfromEclStateFilter.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:
36 };
38}
The Module parameter list class.
A very rough filter for all CDC states.
double m_maximalHitDistance
maximal distance from track to trajectory (in XY)
double m_maximalHitDistanceSeed
maximal distance from track to trajectory (in XY) for first hit (ECL -> CDC)
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.
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.