|
|
void | YODA::write (const std::string &filename, const AnalysisObject &ao, int precision=-1) |
| Write out object ao to file filename.
|
|
template<typename RANGE > |
void | YODA::write (const std::string &filename, const RANGE &aos, int precision=-1) |
| Write out a collection of objects objs to file filename.
|
|
template<typename AOITER > |
void | YODA::write (const std::string &filename, const AOITER &begin, const AOITER &end, int precision=-1) |
|
|
void | YODA::write (std::ostream &os, const AnalysisObject &ao, const std::string &fmt, int precision=-1) |
| Write out object ao to stream os with format fmt.
|
|
template<typename RANGE > |
void | YODA::write (std::ostream &os, const RANGE &aos, const std::string &fmt, int precision=-1) |
| Write out a collection of objects objs to file filename.
|
|
template<typename AOITER > |
void | YODA::write (std::ostream &os, const AOITER &begin, const AOITER &end, const std::string &fmt, int precision=-1) |
|
|
void | YODA::read (const std::string &filename, std::vector< AnalysisObject * > &aos, const std::string &match="", const std::string &unmatch="") |
| Read in a collection of objects objs from file filename.
|
|
std::vector< AnalysisObject * > | YODA::read (const std::string &filename, const std::string &match="", const std::string &unmatch="") |
| Read in a collection of objects from file filename.
|
|
|
void | YODA::read (std::istream &is, std::vector< AnalysisObject * > &aos, const std::string &fmt, const std::string &match="", const std::string &unmatch="") |
| Read in a collection of objects objs from stream is, expecting format fmt.
|
|
std::vector< AnalysisObject * > | YODA::read (std::istream &is, const std::string &fmt, const std::string &match="", const std::string &unmatch="") |
| Read in a collection of objects from stream is, expecting format fmt.
|
|