Warning, file /include/YODA/WriterYODA.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006 #ifndef YODA_WRITERYODA_H
0007 #define YODA_WRITERYODA_H
0008
0009 #include "YODA/Writer.h"
0010
0011 namespace YODA {
0012
0013
0014
0015 class WriterYODA : public Writer {
0016 public:
0017
0018
0019 static Writer& create();
0020
0021
0022 #include "YODA/WriterMethods.icc"
0023
0024
0025 protected:
0026
0027 void writeAO(std::ostream& stream, const AnalysisObject& ao);
0028
0029
0030 private:
0031
0032 #ifdef HAVE_HDF5
0033 void writeAOS(YODA_H5::File&, const vector<const AnalysisObject*>&) { };
0034 #endif
0035
0036 void _writeAnnotations(std::ostream& os, const AnalysisObject& ao);
0037
0038
0039 WriterYODA() { }
0040
0041 };
0042
0043
0044 }
0045
0046 #endif