Belle II Software  release-05-02-19
RCConfig.cc
1 #include "daq/slc/runcontrol/RCConfig.h"
2 
3 using namespace Belle2;
4 
5 RCConfig::RCConfig() : m_obj(), m_expno(0),
6  m_runno(0), m_subno(0)
7 {
8 
9 }
10 
11 RCConfig::RCConfig(const RCConfig& config)
12  : m_obj(config.m_obj), m_expno(config.m_expno),
13  m_runno(config.m_runno), m_subno(config.m_subno)
14 {
15 
16 }
17 
18 void RCConfig::print()
19 {
20 }
Belle2::RCConfig
Definition: RCConfig.h:14
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19