ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitHzz4l/batch/merge_scripts/mergeAllZZ.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

# User Rev Content
1 khahn 1.1 mergeAllZZ(char * f1, char * f2, char *f3, char *f4 ) {
2     TChain * c = new TChain("zznt");
3    
4     char buf[256];
5     c->Add(f1);
6     c->Add(f2);
7     //c->Merge(f3);
8     c->Add(f3);
9     c->Merge(f4);
10     }