yoda is hosted by Hepforge, IPPP Durham
YODA - Yet more Objects for Data Analysis 2.1.0
WriterYODA1.h
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#ifndef YODA_WRITERYODA1_H
7#define YODA_WRITERYODA1_H
8
10#include "YODA/Counter.h"
11#include "YODA/Histo.h"
12#include "YODA/Profile.h"
13#include "YODA/Scatter.h"
14#include "YODA/Writer.h"
15
16namespace YODA {
17
18
20 class [[deprecated]] WriterYODA1 : public Writer {
21 public:
22
24 static Writer& create();
25
26 // Include definitions of all write methods (all fulfilled by Writer::write(...))
27 #include "YODA/WriterMethods.icc"
28
29
30 protected:
31
32 void writeAO(std::ostream& stream, const AnalysisObject& ao);
33
34 void writeCounter(std::ostream& stream, const Counter& c);
35 void writeHisto1D(std::ostream& stream, const Histo1D& h);
36 void writeHisto2D(std::ostream& stream, const Histo2D& h);
37 void writeProfile1D(std::ostream& stream, const Profile1D& p);
38 void writeProfile2D(std::ostream& stream, const Profile2D& p);
39 void writeScatter1D(std::ostream& stream, const Scatter1D& s);
40 void writeScatter2D(std::ostream& stream, const Scatter2D& s);
41 void writeScatter3D(std::ostream& stream, const Scatter3D& s);
42
43
44 private:
45
46 #ifdef HAVE_HDF5
47 void writeAOS(YODA_H5::File&, const vector<const AnalysisObject*>&) { };
48 #endif
49
50 void _writeAnnotations(std::ostream& os, const AnalysisObject& ao);
51
53 WriterYODA1() { }
54
55 };
56
57
58}
59
60#endif
AnalysisObject is the base class for histograms and scatters.
User-facing BinnedDbn class in arbitrary dimension.
Definition BinnedDbn.h:55
A weighted counter.
Definition Counter.h:26
A generic data type which is just a collection of n-dim data points with errors.
Definition Scatter.h:153
Legacy persistency writer for YODA1-style flat text format.
Definition WriterYODA1.h:20
Pure virtual base class for various output writers.
Definition Writer.h:31
Anonymous namespace to limit visibility.