![]() |
ROOT
6.06/09
Reference Guide
|
#include <istream>#include <cassert>#include <cctype>#include "TreeUtils.h"#include "TNtupleD.h"#include "TNtuple.h"#include "TError.h"#include "TTree.h"
Include dependency graph for TreeUtils.cxx:Go to the source code of this file.
Namespaces | |
| ROOT | |
| Namespace for new ROOT classes and functions. | |
| ROOT::TreeUtils | |
Functions | |
| void | ROOT::TreeUtils::SkipEmptyLines (std::istream &input) |
| Skips empty lines (newline-characters), ws-lines (consisting only of whitespace characters + newline-characters). More... | |
| void | ROOT::TreeUtils::SkipWSCharacters (std::istream &input) |
| Skip whitespace characters, but not newline-characters we support ('\r' or '\n'). More... | |
| bool | ROOT::TreeUtils::NextCharacterIsEOL (std::istream &input) |
| Either '\r' | '\n' or eof of some problem. More... | |
| template<class DataType , class Tuple > | |
| Long64_t | ROOT::TreeUtils::FillNtupleFromStream (std::istream &inputStream, Tuple &tuple, char delimiter, bool strictMode) |
| template Long64_t | ROOT::TreeUtils::FillNtupleFromStream< Float_t, TNtuple > (std::istream &, TNtuple &, char, bool) |
| template Long64_t | ROOT::TreeUtils::FillNtupleFromStream< Double_t, TNtupleD > (std::istream &, TNtupleD &, char, bool) |
| void | ROOT::TreeUtils::SkipComment (std::istream &input) |
| Skips everything from '#' to (including) '\r' or '\n'. More... | |