BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
WrongSizeIssue.cxx
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2
3/**
4 * @file WrongSizeIssue.cxx
5 * @author <a href="mailto:Andre.dos.Anjos@cern.ch">Andre DOS ANJOS</a>
6 * $Author: zhangy $
7 * $Revision: 1.1.1.1 $
8 * $Date: 2009/06/19 07:35:41 $
9 *
10 * Implements the size-check issue
11 */
12
13#include "eformat/WrongSizeIssue.h"
14
15/**
16 * Strings to identify keys in ERS
17 */
18static const char* SIZE_KEY = "The informed (wrong) size value";
19
21 uint32_t size )
22 : eformat::Issue( context, severity ) {
23 set_value( SIZE_KEY, size );
24 finish_setup( "Informed fragment size is wrong" );
25}
26
27uint32_t eformat::WrongSizeIssue::size() const { return get_int_value( SIZE_KEY ); }
Issue(const ers::Context &context, ers::severity_t severity)
WrongSizeIssue(const ers::Context &context, ers::severity_t severity, uint32_t size)
Source context for Issue.
void set_value(const std::string &key, uint8_t value)
Sets a value 8 bit unsigned.
severity_t severity() const
severity_t of the issue
int get_int_value(const std::string &key, int def=0) const
Get a value of the table as an integer.
void finish_setup(const std::string &message)
Finishes the setup of the Issue.
enum ers::_severity_t severity_t