Belle II Software development
RunNumber.cc
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#include "daq/slc/database/RunNumber.h"
9
10using namespace Belle2;
11
12RunNumber::RunNumber()
13 : m_node(), m_runtype(), m_expno(0), m_runno(0),
14 m_id(0), m_record_time(0)
15{
16}
17
18RunNumber::RunNumber(const std::string& node,
19 const std::string& runtype,
20 int expno, int runno,
21 int id, long long record_time)
22 : m_node(node), m_runtype(runtype), m_expno(expno), m_runno(runno),
23 m_id(id), m_record_time(record_time)
24{
25}
Abstract base class for different kinds of events.