1 #ifndef _Belle2_RCNode_h
2 #define _Belle2_RCNode_h
4 #include "daq/slc/nsm/NSMNode.h"
15 RCNode(
const std::string& name =
"")
16 :
NSMNode(name), m_sequential(
false), m_isglobal(-1) {}
20 bool isSequential()
const {
return m_sequential; }
21 const std::string& getConfig()
const {
return m_config; }
22 void setSequential(
bool seq) { m_sequential = seq; }
23 void setConfig(
const std::string& config) { m_config = config; }
24 void setGlobal(
int isglobal) { m_isglobal = isglobal; }
25 int isGlobal()
const {
return m_isglobal; }