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