Belle II Software
release-05-01-25
NSMHandlerException.cc
1
#include "daq/slc/nsm/NSMHandlerException.h"
2
3
#include <cstdarg>
4
#include <cstdio>
5
6
using namespace
Belle2
;
7
8
NSMHandlerException::NSMHandlerException(
const
std::string& format, ...)
9
{
10
va_list ap;
11
char
ss[1024 * 100];
12
va_start(ap, format);
13
vsnprintf(ss,
sizeof
(ss), format.c_str(), ap);
14
va_end(ap);
15
m_comment = ss;
16
}
17
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:19
daq
slc
nsm
src
NSMHandlerException.cc
Generated on Fri Nov 5 2021 03:50:03 for Belle II Software by
1.8.17