yoda is hosted by Hepforge, IPPP Durham
YODA - Yet more Objects for Data Analysis 2.1.0
WriterYODA.cc
Go to the documentation of this file.
1// -*- C++ -*-
2//
3// This file is part of YODA -- Yet more Objects for Data Analysis
4// Copyright (C) 2008-2025 The YODA collaboration (see AUTHORS for details)
5//
6#include "YODA/WriterYODA.h"
7
8#include <iostream>
9#include <iomanip>
10using namespace std;
11
12namespace YODA {
13
14
17 static WriterYODA _instance;
18 _instance.setPrecision(6);
19 return _instance;
20 }
21
22
28 static const int YODA_FORMAT_VERSION = 3;
29
30
31 // Version-formatting helper function
32 inline string _iotypestr(const string& baseiotype) {
33 ostringstream os;
34 os << "YODA_" << Utils::toUpper(baseiotype) << "_V" << YODA_FORMAT_VERSION;
35 return os.str();
36 }
37
38
39 void WriterYODA::_writeAnnotations(std::ostream& os, const AnalysisObject& ao) {
40 os << scientific << setprecision(_aoprecision);
41 for (const string& a : ao.annotations()) {
42 if (a.empty()) continue;
44 string ann = ao.annotation(a);
45 // remove spurious line returns at the end of a string so that we don't
46 // end up with two line returns.
47 ann.erase(std::remove(ann.begin(), ann.end(), '\n'), ann.end());
48 os << a << ": " << ann << "\n";
49 }
50 os << "---\n";
51 }
52
53
54 void WriterYODA::writeAO(std::ostream& os, const AnalysisObject& ao) {
55 ios_base::fmtflags oldflags = os.flags();
56 os << scientific << showpoint << setprecision(_aoprecision);
57 os << "BEGIN " << _iotypestr(ao.type()) << " " << ao.path() << "\n";
58 _writeAnnotations(os, ao);
59 ao._renderYODA(os, _aoprecision+7); // = "-1." + _aoprecision + "e+23"
60 os << "END " << _iotypestr(ao.type()) << "\n\n";
61 os << flush;
62 os.flags(oldflags);
63 }
64
65}
AnalysisObject is the base class for histograms and scatters.
virtual std::string type() const
Get name of the analysis object type.
const std::string path() const
Get the AO path.
Persistency writer for YODA flat text format.
Definition WriterYODA.h:15
static Writer & create()
Singleton creation function.
Definition WriterYODA.cc:16
void writeAO(std::ostream &stream, const AnalysisObject &ao)
Definition WriterYODA.cc:54
Pure virtual base class for various output writers.
Definition Writer.h:31
void setPrecision(int precision)
Set precision of numerical quantities in this writer's output.
Definition Writer.h:176
Anonymous namespace to limit visibility.
static const int YODA_FORMAT_VERSION
Definition WriterYODA.cc:28