Belle II Software development
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
13namespace Belle2 {
23 public:
24
29
33 virtual void event() override;
34
35 private:
37 std::vector<std::string> m_ParticleLists;
39 double m_frac;
40 }; //TrackingEfficiencyModule
41
43}; //namespace
44
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.