Belle II Software  release-05-02-19
UpdateParticleTrackCandModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2015 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: tadeas *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 
11 #ifndef UPDATEPARTICLETRACKCANDMODULE_H
12 #define UPDATEPARTICLETRACKCANDMODULE_H
13 
14 #include <framework/core/Module.h>
15 
16 namespace Belle2 {
30  class UpdateParticleTrackCandModule : public Module {
31 
32  public:
33 
38 
40  virtual void initialize() override;
41 
43  virtual void event() override;
44 
45 
46  private:
47 
48  std::vector<std::string> m_motherListNames;
49  bool m_removePXD;
50  bool m_removeSVD;
51  bool m_removeCDC;
52  bool m_removeBKLM;
53  };
55 }
56 
57 #endif /* UPDATEPARTICLETRACKCANDMODULE_H */
Belle2::UpdateParticleTrackCandModule::initialize
virtual void initialize() override
init
Definition: UpdateParticleTrackCandModule.cc:45
Belle2::UpdateParticleTrackCandModule::m_motherListNames
std::vector< std::string > m_motherListNames
Names of particle list which tracks should be updated.
Definition: UpdateParticleTrackCandModule.h:56
Belle2::UpdateParticleTrackCandModule::m_removePXD
bool m_removePXD
Remove PXD hits from TrackCand.
Definition: UpdateParticleTrackCandModule.h:57
Belle2::UpdateParticleTrackCandModule::event
virtual void event() override
update candidates
Definition: UpdateParticleTrackCandModule.cc:49
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::UpdateParticleTrackCandModule::m_removeSVD
bool m_removeSVD
Remove SVD hits from TrackCand.
Definition: UpdateParticleTrackCandModule.h:58
Belle2::UpdateParticleTrackCandModule::UpdateParticleTrackCandModule
UpdateParticleTrackCandModule()
Constructor: Sets the description, the properties and the parameters of the module.
Definition: UpdateParticleTrackCandModule.cc:31
Belle2::UpdateParticleTrackCandModule::m_removeCDC
bool m_removeCDC
Remove CDC hits from TrackCand.
Definition: UpdateParticleTrackCandModule.h:59
Belle2::UpdateParticleTrackCandModule::m_removeBKLM
bool m_removeBKLM
Remove BKLM hits from TrackCand.
Definition: UpdateParticleTrackCandModule.h:60