BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
WrongMarkerIssue.cxx
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2
3/**
4 * @file WrongMarkerIssue.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 wrong-marker exception class
11 */
12
13#include "eformat/WrongMarkerIssue.h"
14
15/**
16 * Strings to identify keys in ERS
17 */
18static const char* CURRENT_MARKER_KEY = "Current header marker";
19static const char* EXPECTED_MARKER_KEY = "Expected header marker";
20
23 uint32_t expected )
24
25 : eformat::Issue( context, severity ) {
26 set_value( CURRENT_MARKER_KEY, current );
27 set_value( EXPECTED_MARKER_KEY, expected );
28 finish_setup( "Unexpected header marker found on stream" );
29}
30
32 return get_int_value( CURRENT_MARKER_KEY );
33}
34
36 return get_int_value( EXPECTED_MARKER_KEY );
37}
Issue(const ers::Context &context, ers::severity_t severity)
WrongMarkerIssue(const ers::Context &context, ers::severity_t severity, uint32_t current, uint32_t expected)
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