Belle II Software  release-08-01-10
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 
18 namespace Belle2 {
24 
27  class PruneRecoHitsModule : public Module {
28 
29  public:
32 
34  void initialize() override;
35 
37  void event() override;
38 
39  private:
40 
43 
44  }; // end class
46 } // end namespace Belle2
47 
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.