[quote]fChain->Branch(branchList);[/quote]is very unlikely to do what you were looking for … this add new empty branches to a TChain (somewhat illegal already) and those branch contain … TBranch objects in your case (rather than your data).
I am not sure what you are trying to do here.
Are you trying to analyze the content of the TTree named ‘Bush’? Are you trying to copy it (in which case you ought to be using TTree::CloneTree)? For reference TChain are designed to look at the content of existing TTree in existing files and are usually build by giving the instance a series of file names.
I had been trying to make a copy of the branch structure in bush into the chain. But I have stopped using chains anyway (they were a bit slow). Many thanks for the help!
[quote]I had been trying to make a copy of the branch structure in bush into the chain[/quote]This is not semantically possible (TChain are per se read-only).
[quote] But I have stopped using chains anyway (they were a bit slow)[/quote]TChains are collections of files/trees and should be as fast as TTree. In what use case did you find them too slow?