What is correct for the third argument to TTree::Branch ?
{
TFile   *file=new TFile("data.root","UPDATE");
TTree   *tree=new TTree();
TArrayS *s=new TArrayS(5);
TBranch *b=tree->Branch("my branch","TArrayS",???,0,0);
                                              ***					
}