Belle II Software development
TOPModuleT0LLAlgorithm.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#include <calibration/CalibrationAlgorithm.h>
11
12namespace Belle2 {
17 namespace TOP {
18
24 public:
25
28
33 void setMinError(double minError) {m_minError = minError;}
34
35 private:
36
40 virtual EResult calibrate() final;
41
42 // algorithm parameters
43 double m_minError = 0.020;
44
45 };
46
47 } // end namespace TOP
49} // end namespace Belle2
EResult
The result of calibration.
CalibrationAlgorithm(const std::string &collectorModuleName)
Constructor - sets the prefix for collected objects (won't be accesses until execute(....
virtual EResult calibrate() final
algorithm implementation
double m_minError
minimal moduleT0 uncertainty [ns] to declare c_OK
void setMinError(double minError)
Sets minimal module T0 uncertainty to declare this calibration as c_OK.
Abstract base class for different kinds of events.