ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/batch/merge_scripts/mergeDataHiIP.C
Revision: 1.1
Committed: Tue Jun 19 20:36:05 2012 UTC (12 years, 11 months ago) by khahn
Content type: text/plain
Branch: MAIN
CVS Tags: compiled, HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 khahn 1.1 mergeDataHiIP(char * label="4m") {
2    
3     TChain * c = new TChain("zznt");
4    
5     char buf[256];
6     sprintf( buf, "%s.*.ref0.4err.root", label );
7     cout << "buf: " << buf << endl;
8     c->Add(buf);
9     sprintf( buf, "%s.ref0.4err.merged.root", label );
10     c->Merge(buf);
11     }