Belle II Software development
TestCalibDBAccessModule.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#pragma once
9
10#include <framework/core/Module.h>
11#include <framework/database/DBObjPtr.h>
12#include <framework/database/DBArray.h>
13#include <calibration/dbobjects/TestCalibObject.h>
14#include <calibration/dbobjects/TestCalibMean.h>
15
16namespace Belle2 {
23
24 public:
25
28
31
33 virtual void initialize() override;
35 virtual void event() override;
36
37 private:
40 };
42}
Class for accessing arrays of objects in the database.
Definition: DBArray.h:26
Class for accessing objects in the database.
Definition: DBObjPtr.h:21
Base class for Modules.
Definition: Module.h:72
Returns the calibration result from SoftwareTriigerResult for skimming out calibration flagged events...
virtual void initialize() override
Initialize.
DBObjPtr< TestCalibMean > m_obj_constant
obj_constant
virtual void event() override
Event()
TestCalibDBAccessModule()
Constructor: Sets the description, the properties and the parameters of the module.
DBArray< TestCalibObject > m_array_constants
array_constants
Abstract base class for different kinds of events.