Belle II Software  release-05-01-25
NSMNode.cc
1 #include "daq/slc/nsm/NSMNode.h"
2 
3 #include "daq/slc/base/StringUtil.h"
4 
5 using namespace Belle2;
6 
7 NSMNode::NSMNode(const std::string& name)
8 {
9  m_name = StringUtil::toupper(name);
10  m_id = -1;
11 }
12 
13 void NSMNode::setName(const std::string& name)
14 {
15  m_name = StringUtil::toupper(name);
16 }
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19