Belle II Software development
SVDMCClusterTimeFudgeFactor.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 <vxd/dataobjects/VxdID.h>
12#include <svd/dbobjects/SVDCalibrationsBase.h>
13#include <svd/dbobjects/SVDCalibrationsScalar.h>
14#include <framework/database/DBObjPtr.h>
15#include <string>
16
17namespace Belle2 {
27 public:
28 static std::string name;
34 {
35 m_aDBObjPtr.addCallback([this](const std::string&) -> void
36 { B2DEBUG(20, "SVDMCClusterTimeFudgeFactor: from now on we are using " << this->m_aDBObjPtr->get_uniqueID()); });
37 }
38
47 inline double getFudgeFactor(
48 const Belle2::VxdID& sensorID,
49 const bool& isU) const
50 {
51 return m_aDBObjPtr->get(sensorID.getLayerNumber(),
52 sensorID.getLadderNumber(),
53 sensorID.getSensorNumber(),
54 m_aDBObjPtr->sideIndex(isU),
55 1);
56 }
57
59 TString getUniqueID() { return m_aDBObjPtr->get_uniqueID(); }
60
62 bool isValid() { return m_aDBObjPtr.isValid(); }
63
64 private:
66 };
68}
Class for accessing objects in the database.
Definition: DBObjPtr.h:21
base class for calibrations classes
This class defines the dbobject and the methods to access the SVD time fudge factors for MC reconstru...
double getFudgeFactor(const Belle2::VxdID &sensorID, const bool &isU) const
Return the MC fudge factor.
SVDCalibrationsBase< SVDCalibrationsScalar< float > > t_payload
typedef for the SVDMCClusterTimeFudgeFactor payload of all SVD sensors
DBObjPtr< t_payload > m_aDBObjPtr
SVDMCClusterTimeFudgeFactor payload.
static std::string name
name of the SVDMCClusterTimeFudgeFactor payload
SVDMCClusterTimeFudgeFactor()
Constructor, no input argument is required.
TString getUniqueID()
returns the unique ID of the payload
bool isValid()
returns true if the m_aDBObtPtr is valid in the requested IoV
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:33
baseType getSensorNumber() const
Get the sensor id.
Definition: VxdID.h:100
baseType getLadderNumber() const
Get the ladder id.
Definition: VxdID.h:98
baseType getLayerNumber() const
Get the layer id.
Definition: VxdID.h:96
Abstract base class for different kinds of events.