Belle II Software  release-08-01-10
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 
14 namespace Belle2 {
21  namespace TrackFindingCDC {
22  class CDCFacet;
23 
26 
27  private:
30 
31  public:
34 
36  explicit SimpleFacetRelationFilter(double deviationCosCut);
37 
38  public:
40  void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) override;
41 
42  public:
44  Weight operator()(const CDCFacet& fromFacet, const CDCFacet& toFacet) final;
45 
46  private:
49  };
50  }
52 }
The Module parameter list class.
Base class for filtering the neighborhood of facets.
Class representing a triple of neighboring oriented wire with additional trajectory information.
Definition: CDCFacet.h:32
Class filtering the neighborhood of facets based on simple criterions.
SimpleFacetRelationFilter()
Constructor using default direction of flight deviation cut off.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) override
Expose the set of parameters of the filter to the module parameter list.
Weight operator()(const CDCFacet &fromFacet, const CDCFacet &toFacet) final
Main filter method returning the weight of the neighborhood relation.
double m_param_deviationCosCut
Memory for the used direction of flight deviation.
Abstract base class for different kinds of events.