Belle II Software  light-2403-persian
TrackingEfficiency.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 #include <framework/database/DBObjPtr.h>
13 #include <analysis/dbobjects/ParticleWeightingLookUpTable.h>
14 
15 #include <analysis/dataobjects/Particle.h>
16 
17 namespace Belle2 {
27  public:
28 
33 
37  virtual void event() override;
38 
39  private:
41  std::vector<std::string> m_ParticleLists;
43  double m_frac;
44  }; //TrackingEfficiencyModule
45 
47 }; //namespace
48 
Base class for Modules.
Definition: Module.h:72
Tracking efficiency systematics module: removes tracks from the lists at random for efficiency studie...
std::vector< std::string > m_ParticleLists
input particle lists
virtual void event() override
Function to be executed at each event.
double m_frac
fraction of particles to be removed from the particlelist
TrackingEfficiencyModule()
Constructor: Sets the description, the properties and the parameters of the module.
Abstract base class for different kinds of events.
Definition: ClusterUtils.h:24