Belle II Software  release-05-01-25
ECLLocalRunCalibRef.cc
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2019 - Belle II Collaboration *
4  * *
5  * ECLLocalRunCalibRef *
6  * *
7  * This class is designed to store reference marks to database for *
8  * ECL local run calibration. *
9  * *
10  * Author: The Belle II Collaboration *
11  * Contributors: Sergei Gribanov *
12  * *
13  * This software is provided "as is" without any warranty. *
14  **************************************************************************/
15 // ECL
16 #include <ecl/dbobjects/ECLLocalRunCalibRef.h>
17 using namespace Belle2;
18 // Constructor.
20  c_exp(0), c_run(0)
21 {
22 }
23 // Constructor.
25  const int& curRun):
26  c_exp(curExp), c_run(curRun)
27 {
28 }
29 // Destructor.
31 {
32 }
33 // Get experiment number.
35 {
36  return c_exp;
37 }
38 // Get run number.
40 {
41  return c_run;
42 }
Belle2::ECLLocalRunCalibRef::getRun
int getRun() const
Get run number.
Definition: ECLLocalRunCalibRef.cc:39
Belle2::ECLLocalRunCalibRef::~ECLLocalRunCalibRef
~ECLLocalRunCalibRef()
Destructor.
Definition: ECLLocalRunCalibRef.cc:30
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::ECLLocalRunCalibRef::ECLLocalRunCalibRef
ECLLocalRunCalibRef()
Constructor.
Definition: ECLLocalRunCalibRef.cc:19
Belle2::ECLLocalRunCalibRef::getExp
int getExp() const
Get experiment number.
Definition: ECLLocalRunCalibRef.cc:34
Belle2::ECLLocalRunCalibRef::c_run
const int c_run
Run number.
Definition: ECLLocalRunCalibRef.h:75
Belle2::ECLLocalRunCalibRef::c_exp
const int c_exp
Experiment number.
Definition: ECLLocalRunCalibRef.h:71