Belle II Software development
RCConfig.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/runcontrol/RCConfig.h"
9
10using namespace Belle2;
11
12RCConfig::RCConfig() : m_obj(), m_expno(0),
13 m_runno(0), m_subno(0)
14{
15
16}
17
18RCConfig::RCConfig(const RCConfig& config)
19 : m_obj(config.m_obj), m_expno(config.m_expno),
20 m_runno(config.m_runno), m_subno(config.m_subno)
21{
22
23}
24
25void RCConfig::print()
26{
27}
Abstract base class for different kinds of events.