Belle II Software development
DummyCollectorModule.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/CalibrationCollectorModule.h>
12
13namespace Belle2 {
20
21 public:
22
25
26 virtual void prepare() override;
27 virtual void collect() override;
28 };
30}
Calibration collector module base class.
Basically empty Collector, makes only a tiny amount of output data.
virtual void collect() override
Replacement for event(). Fill you calibration data objects here.
virtual void prepare() override
Replacement for initialize(). Register calibration dataobjects here as well.
DummyCollectorModule()
Constructor: Sets the description, the properties and the parameters of the module.
Abstract base class for different kinds of events.