Belle II Software development
SimpleFacetFilter.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/facet/BaseFacetFilter.h>
11
12#include <string>
13
14namespace Belle2 {
19
20
21 namespace TrackingUtilities {
22 class CDCFacet;
23 }
24 namespace TrackFindingCDC {
25
27 class SimpleFacetFilter : public BaseFacetFilter {
28
29 private:
31 using Super = BaseFacetFilter;
32
33 public:
36
38 explicit SimpleFacetFilter(double deviationCosCut);
39
40 public:
42 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
43
44 public:
49 TrackingUtilities::Weight operator()(const TrackingUtilities::CDCFacet& facet) final;
50
51 private:
54 };
55 }
57}
The Module parameter list class.
SimpleFacetFilter()
Constructor using default direction of flight deviation cut off.
BaseFacetFilter Super
Type of the super class.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the set of parameters of the filter to the module parameter list.
TrackingUtilities::Weight operator()(const TrackingUtilities::CDCFacet &facet) final
Main filter method returning the weight of the facet.
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.