Belle II Software development
NSMNode.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/nsm/NSMNode.h"
9
10#include "daq/slc/base/StringUtil.h"
11
12using namespace Belle2;
13
14NSMNode::NSMNode(const std::string& name)
15{
16 m_name = StringUtil::toupper(name);
17 m_id = -1;
18}
19
20void NSMNode::setName(const std::string& name)
21{
22 m_name = StringUtil::toupper(name);
23}
Abstract base class for different kinds of events.