Changeset 247 in svn for trunk/Utilities/ExRootAnalysis/src
- Timestamp:
- Feb 5, 2009, 2:37:32 PM (16 years ago)
- Location:
- trunk/Utilities/ExRootAnalysis/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Utilities/ExRootAnalysis/src/ExRootTreeReader.cc
r220 r247 4 4 * Class simplifying access to ROOT tree branches 5 5 * 6 * $Date: 2009-02-0 2 11:32:01$7 * $Revision: 1. 2$6 * $Date: 2009-02-05 13:37:32 $ 7 * $Revision: 1.3 $ 8 8 * 9 9 * … … 17 17 #include "TChain.h" 18 18 #include <iostream> 19 #include <iomanip> 19 20 20 21 using namespace std; … … 113 114 if(!array) 114 115 { 115 cout << "** WARNING: cannot access branch '" << branchName << "', return NULL pointer" << endl; 116 cerr << left << setw(35) <<"** ERROR: cannot access branch"<<"" 117 << left << setw(15) << branchName <<"" 118 << right << setw(19) <<" **"<<""<<endl; 116 119 } 117 120 … … 150 153 if(!it_map->second.first) 151 154 { 152 cout << "** WARNING: cannot get branch '" << it_map->first << "'" << endl; 155 cerr << left << setw(35) <<"** ERROR: cannot get branch"<<"" 156 << left << setw(15) << it_map->first <<"" 157 << right << setw(19) <<" **"<<""<<endl; 153 158 } 154 159 } -
trunk/Utilities/ExRootAnalysis/src/ExRootTreeWriter.cc
r220 r247 4 4 * Class handling output ROOT tree 5 5 * 6 * $Date: 2009-02-0 2 11:32:01$7 * $Revision: 1. 2$6 * $Date: 2009-02-05 13:37:32 $ 7 * $Revision: 1.3 $ 8 8 * 9 9 * … … 18 18 #include "TTree.h" 19 19 #include <iostream> 20 #include <iomanip> 20 21 21 22 using namespace std; … … 31 32 if(!fNewTree) 32 33 { 33 c out << "** ERROR: cannot create tree"<< endl;34 cerr <<"** ERROR: cannot create tree **"<< endl; 34 35 return; 35 36 }
Note:
See TracChangeset
for help on using the changeset viewer.