10 #include "evt/Head.hh" 
   43     public std::vector< JSinglePointer<JAbstractTreeReader> >
 
   96 int main(
int argc, 
char **argv)
 
  105     JParser<> zap(
"Auxiliary program to print ROOT TTree information.");
 
  112   catch(
const exception &error) {
 
  113     FATAL(error.what() << endl);
 
  120   JTreeList inspector(typelist);
 
  124     cout << *file << endl;
 
  126     for (JTreeList::iterator i = inspector.begin(); i != inspector.end(); ++i) {
 
  128       gErrorIgnoreLevel = kFatal;
 
  130       if ((*i)->load(TFile::Open(file->c_str()))) {
 
  131         cout << setw(24) << left  <<  (**i)->GetName()                 << 
' '  
  132              << setw(32) << left  <<  (*i)->getDictionary()->GetName() << 
' '  
  133              << setw(10) << right <<  (**i)->GetEntries()              << 
' ' 
  134              << setw( 6) << right << ((**i)->GetTotBytes() >> 20)      << 
" [MB]" << endl;