Belle II Software  release-08-01-10
PruneGenfitTracksModule.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 
19 namespace Belle2 {
26 
30 
31  public:
34 
36  void event() override;
37 
38  private:
39 
41  std::string m_pruneFlags;
42 
44  std::string m_storeArrayName;
45 
46  }; // end class
48 } // end namespace Belle2
49 
Base class for Modules.
Definition: Module.h:72
Module to prune genfit::Tracks.
PruneGenfitTracksModule()
Constructor of the module. Setting up parameters and description.
void event() override
Event processing, prunes the genfit tracks contained in each event.
std::string m_storeArrayName
name of the StoreArray to prune
std::string m_pruneFlags
flags used for pruning, See genfit::Track class for possible settings
Abstract base class for different kinds of events.