Belle II Software development
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
19namespace Belle2 {
27
28 public:
31
33 void event() override;
34
35 private:
36
38 std::string m_pruneFlags;
39
41 std::string m_storeArrayName;
42
43 }; // end class
45} // end namespace Belle2
46
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.