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

File Contents

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