Belle II Software development
PruneRecoHitsModule.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 <framework/core/Module.h>
11#include <framework/datastore/SelectSubset.h>
12#include <tracking/dataobjects/RecoHitInformation.h>
13
18namespace Belle2 {
24 class PruneRecoHitsModule : public Module {
25
26 public:
29
31 void initialize() override;
32
34 void event() override;
35
36 private:
37
40
41 }; // end class
43} // end namespace Belle2
44
Base class for Modules.
Definition: Module.h:72
Module to prune RecoTracks.
void initialize() override
Declare required StoreArray.
void event() override
Event processing, prunes the RecoTracks contained in each event.
SelectSubset< RecoHitInformation > m_subsetOfUnprunedRecoHitInformation
We use SelectSubset here to delete all pruned RecoHitInformation.
PruneRecoHitsModule()
Constructor of the module. Setting up parameters and description.
Class to create a subset of a given StoreArray together with the relations with other StoreArrays.
Definition: SelectSubset.h:193
Abstract base class for different kinds of events.