Skip to content

Commit a501dd6

Browse files
Script needs to be updated for new index mechanism. Print warning.
1 parent 56ef0bc commit a501dd6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rammerge.C

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313
void rammerge(const char *outfile, const char *infile1, const char *infile2)
1414
{
15+
16+
printf("*** Needs to be fixed to use new index mechanism. ***\n");
17+
return;
18+
1519
TList *list = new TList;
1620

1721
auto *in1 = TFile::Open(infile1);
@@ -34,4 +38,4 @@ void rammerge(const char *outfile, const char *infile1, const char *infile2)
3438
in2->Close();
3539

3640
delete list;
37-
}
41+
}

0 commit comments

Comments
 (0)