Belle II Software  release-08-01-10
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 
16 namespace Belle2 {
22 
26 
27  public:
28 
31 
33  virtual ~TestCalibDBAccessModule();
34 
36  virtual void initialize() override;
38  virtual void event() override;
39 
40  private:
43  };
45 }
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.