TChain.Add() should enable globbing so that we can easily chain
TTrees that reside in different subdirectories.
The code to do it is given in Problem using wildcards in TChain->Add
but I think it will be of general interest to anybody that this is done by the method TChain.Add and not
asking everybody to do it by hand each time.
It also reduce the surprise factor and the puzzlement that
TChain->Add(“a//.root”) give no warnings but does not add all the intended file.
Hi,
what I do is the following but I don’t know if this is portable to non unix systems:
TString command = Form("/bin/bash -c ‘ls -1 %s 2>/dev/null’",pattern.Data());
FILE* f=gSystem->OpenPipe(command,“r”);
while (help.Gets(f)){
fchain->Add(help)
gSystem->ClosePipe(f);
But the solution using glob in the other discussion looks nicer.
I think code is simple it is more a portability problem.