Belle II Software development
PXDResultFilterFactory.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/pxd/filters/results/BasePXDResultFilter.h>
11
12#include <tracking/trackFindingCDC/filters/base/FilterFactory.dcl.h>
13
14namespace Belle2 {
20 class PXDResultFilterFactory : public TrackFindingCDC::FilterFactory<BasePXDResultFilter> {
21
22 private:
25
26 public:
28 explicit PXDResultFilterFactory(const std::string& defaultFilterName = "all");
29
32
34 std::string getIdentifier() const override;
35
37 std::string getFilterPurpose() const override;
38
40 std::map<std::string, std::string> getValidFilterNamesAndDescriptions() const override;
41
43 std::unique_ptr<BasePXDResultFilter> create(const std::string& filterName) const override;
44 };
46}
Factory that can create appropriate cluster filters from associated names.
std::unique_ptr< BasePXDResultFilter > create(const std::string &filterName) const override
Create a filter with the given name.
std::map< std::string, std::string > getValidFilterNamesAndDescriptions() const override
Getter for valid filter names and a description for each.
~PXDResultFilterFactory()
Default destructor.
std::string getIdentifier() const override
Getter for a short identifier for the factory.
std::string getFilterPurpose() const override
Getter for a descriptive purpose of the constructed filters.
Factory that can create apropriate filter instances from a name.
Abstract base class for different kinds of events.