Belle II Software development
CDCHitsRemover.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
9#pragma once
10
11#include <framework/datastore/SelectSubset.h>
12#include <tracking/trackingUtilities/findlets/base/Findlet.h>
13
14// framework - DataStore
15#include <framework/datastore/StoreArray.h>
16#include <framework/datastore/StoreObjPtr.h>
17
18#include <cdc/dataobjects/CDCHit.h>
19#include <tracking/trackingUtilities/eventdata/hits/CDCWireHit.h>
20
21namespace Belle2 {
26 namespace TrackingUtilities {
30 class CDCHitsRemover : public Findlet<const CDCWireHit> {
31 private:
34 public:
38 CDCHitsRemover() = default;
43 void initialize() final;
44
46 std::string getDescription() final;
47
49 void exposeParameters(ModuleParamList* moduleParamList, const std::string& prefix) final;
50
54 void apply(const std::vector<CDCWireHit>& wireHits) override;
55 private:
58
61 };
62 };
64}
Class containing the result of the unpacker in raw data and the result of the digitizer in simulation...
Definition CDCHit.h:40
The Module parameter list class.
Class to create a subset of a given StoreArray together with the relations with other StoreArrays.
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
SelectSubset< CDCHit > m_cdc_selector
Selector for CDC hits.
Findlet< const CDCWireHit > Super
Type of the base class.
std::string getDescription() final
Short description of the findlet.
void apply(const std::vector< CDCWireHit > &wireHits) override
Event processor.
void exposeParameters(ModuleParamList *moduleParamList, const std::string &prefix) final
Expose the parameters to a module.
StoreArray< CDCHit > m_cdcHits
CDC 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.