Belle II Software development
SVDOccupancyCalibrationsAlgorithm.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 <calibration/CalibrationAlgorithm.h>
12
13namespace Belle2 {
22 public:
23
25 explicit SVDOccupancyCalibrationsAlgorithm(const std::string& str);
26
29
30 protected:
31
33 virtual EResult calibrate() override;
34
35 private:
36
37 std::string m_id;
38
39 };
40
41} // namespace Belle2
42
43
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() override
Run algo on data.
SVDOccupancyCalibrationsAlgorithm(const std::string &str)
Constructor set the prefix to SVDOccupancyCalibrationsCollector.
Abstract base class for different kinds of events.