32 inline string _iotypestr(
const string& baseiotype) {
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);
47 ann.erase(std::remove(ann.begin(), ann.end(),
'\n'), ann.end());
48 os << a <<
": " << ann <<
"\n";
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);
60 os <<
"END " << _iotypestr(ao.
type()) <<
"\n\n";
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.
static Writer & create()
Singleton creation function.
void writeAO(std::ostream &stream, const AnalysisObject &ao)
Pure virtual base class for various output writers.
void setPrecision(int precision)
Set precision of numerical quantities in this writer's output.
Anonymous namespace to limit visibility.
static const int YODA_FORMAT_VERSION