Belle II Software  release-08-01-10
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 
13 namespace Belle2 {
28 
29  public:
30 
35 
37  virtual void initialize() override;
38 
40  virtual void event() override;
41 
42 
43  private:
44 
45  std::vector<std::string> m_motherListNames;
46  bool m_removePXD;
47  bool m_removeSVD;
48  bool m_removeCDC;
49  bool m_removeBKLM;
50  };
52 }
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.