Belle II Software development
UpdateParticleTrackCandModule.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/core/Module.h>
12
13namespace Belle2 {
25
26 public:
27
32
34 virtual void initialize() override;
35
37 virtual void event() override;
38
39
40 private:
41
42 std::vector<std::string> m_motherListNames;
47 };
49}
Base class for Modules.
Definition: Module.h:72
Updates the seed in TrackCand based on fitted state (at vertex)
virtual void event() override
update candidates
bool m_removeCDC
Remove CDC hits from TrackCand.
bool m_removePXD
Remove PXD hits from TrackCand.
bool m_removeBKLM
Remove BKLM hits from TrackCand.
bool m_removeSVD
Remove SVD hits from TrackCand.
std::vector< std::string > m_motherListNames
Names of particle list which tracks should be updated.
UpdateParticleTrackCandModule()
Constructor: Sets the description, the properties and the parameters of the module.
Abstract base class for different kinds of events.