Belle II Software development
FudgeFactorCalibrationAlgorithm.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
13#include <string>
14
15namespace Belle2 {
20 namespace CDC {
25 public:
31 // void storeHisto(bool storeHist = false) {m_storeHisto = storeHist;}
33 void setHistFileName(const std::string& name) {m_histName = name;}
34 protected:
36 EResult calibrate() override;
37 private:
38 std::string m_histName = "histo_mumu.root";
39 };
40 }// name space CDC
42} // namespace Belle2
43
void setHistFileName(const std::string &name)
store Hisotgram or not.
EResult
The result of calibration.
CalibrationAlgorithm(const std::string &collectorModuleName)
Constructor - sets the prefix for collected objects (won't be accesses until execute(....
Abstract base class for different kinds of events.