Belle II Software development
SimpleFacetRelationFilter.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/trackFindingCDC/filters/facetRelation/BaseFacetRelationFilter.h>
11
12#include <string>
13
14namespace Belle2 {
19
20
21 namespace TrackingUtilities {
22 class CDCFacet;
23 }
24 namespace TrackFindingCDC {
25
28
29 private:
32
33 public:
36
38 explicit SimpleFacetRelationFilter(double deviationCosCut);
39
40 public:
42 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
43
44 public:
46 TrackingUtilities::Weight operator()(const TrackingUtilities::CDCFacet& fromFacet,
47 const TrackingUtilities::CDCFacet& toFacet) final;
48
49 private:
52 };
53 }
55}
The Module parameter list class.
SimpleFacetRelationFilter()
Constructor using default direction of flight deviation cut off.
TrackingUtilities::Weight operator()(const TrackingUtilities::CDCFacet &fromFacet, const TrackingUtilities::CDCFacet &toFacet) final
Main filter method returning the weight of the neighborhood relation.
BaseFacetRelationFilter Super
Type of the super class.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the set of parameters of the filter to the module parameter list.
double m_param_deviationCosCut
Memory for the used direction of flight deviation.
Class representing a triple of neighboring oriented wire with additional trajectory information.
Definition CDCFacet.h:32
Abstract base class for different kinds of events.