Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4BuffercoutDestination.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4BuffercoutDestination class implementation
27//
28// Author: A.Dotti (SLAC), 14 April 2017
29// --------------------------------------------------------------------
30
31#include <iostream>
32
33#include "G4AutoLock.hh"
35
36// --------------------------------------------------------------------
38 : m_buffer_out("")
39 , m_buffer_err("")
40 , m_maxSize(max)
41{}
42
43// --------------------------------------------------------------------
45
46// --------------------------------------------------------------------
48{
51}
52
53// --------------------------------------------------------------------
55{
56 m_currentSize_out += msg.size();
57 m_buffer_out << msg;
58 // If there is a max size and it has been reached, flush
60 {
62 }
63 return 0;
64}
65
66// --------------------------------------------------------------------
68{
69 m_currentSize_err += msg.size();
70 m_buffer_err << msg;
71 // If there is a max size and it has been reached, flush
73 {
75 }
76 return 0;
77}
78
79// --------------------------------------------------------------------
81{
82 std::cout << m_buffer_out.str() << std::flush;
83 ResetCout();
84 return 0;
85}
86
87// --------------------------------------------------------------------
89{
90 m_buffer_out.str("");
91 m_buffer_out.clear();
93}
94
95// --------------------------------------------------------------------
97{
98 std::cerr << m_buffer_err.str() << std::flush;
99 ResetCerr();
100 return 0;
101}
102
103// --------------------------------------------------------------------
105{
106 m_buffer_err.str("");
107 m_buffer_err.clear();
109}
int G4int
Definition: G4Types.hh:85
G4BuffercoutDestination(std::size_t maxSize=0)
G4int ReceiveG4cerr(const G4String &msg) override
G4int ReceiveG4cout(const G4String &msg) override