Belle II Software development
TOPModuleT0DeltaTCollectorModule.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
13#include <framework/datastore/StoreArray.h>
14#include <top/dataobjects/TOPTimeZero.h>
15
16#include <framework/database/DBObjPtr.h>
17#include <top/dbobjects/TOPCalModuleT0.h>
18
19
20namespace Belle2 {
34
35 public:
40
41 private:
42
46 virtual void prepare() final;
47
51 virtual void collect() final;
52
53 // steering parameters
55 double m_timeRange;
57 // collections
60 // database
63 };
64
66} // end namespace Belle2
Calibration collector module base class.
Class for accessing objects in the database.
Definition: DBObjPtr.h:21
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Collector for module T0 calibration with chi2 minimization of time differences between slots (method ...
double m_timeRange
histogram time range [ns] (symmetric around zero)
DBObjPtr< TOPCalModuleT0 > m_moduleT0
module T0 calibration constants
StoreArray< TOPTimeZero > m_timeZeros
collection of TOP time zero's
virtual void collect() final
Replacement for event().
virtual void prepare() final
Replacement for initialize().
Abstract base class for different kinds of events.