Belle II Software development
WireHitBackgroundBlocker.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/trackingUtilities/findlets/base/Findlet.h>
11
12#include <vector>
13#include <string>
14
15namespace Belle2 {
20
21 namespace TrackingUtilities {
22 class CDCWireHit;
23 }
24 namespace TrackFindingCDC {
25
27 class WireHitBackgroundBlocker : public TrackingUtilities::Findlet<TrackingUtilities::CDCWireHit&> {
28
29 private:
32
33 public:
35 std::string getDescription() final;
36
38 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
39
41 void apply(std::vector<TrackingUtilities::CDCWireHit>& wireHits) final;
42
43 private:
46
49 };
50 }
52}
The Module parameter list class.
Marks hits as background based on simple heuristics.
double m_param_noiseChargeDeposit
Parameter : Threshold below, which hits are consider electronic noise background.
std::string getDescription() final
Short description of the findlet.
void apply(std::vector< TrackingUtilities::CDCWireHit > &wireHits) final
Main algorithm marking hit as background.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
TrackingUtilities::Findlet< TrackingUtilities::CDCWireHit & > Super
Type of the base class.
bool m_param_blockNegativeDriftLength
Parameter : Switch to drop negative drift lengths from the created wire hits.
Class representing a hit wire in the central drift chamber.
Definition CDCWireHit.h:58
Interface for a minimal algorithm part that wants to expose some parameters to a module.
Definition Findlet.h:26
STL class.
Abstract base class for different kinds of events.
STL namespace.