Adding multiple files to TChain

Hello all,

I am doing a simple procedure of adding multiple files with same tree structure to Tchain. Something like
TChain fad(“FADu”);
fad.Add(“FAD/FAD_1.root”);
fad.Add(“FAD/FAD_2.root”);

but after all the addition “fad” has spurious entries like 10e-314 or 10e214 something like that ? I have checked individual file they are fine. Is there a work around ?

I have another quick question, is it possible to draw after ignoring duplicate events
fad.Draw(“FADbkg”,"?","?")

there are multiple entries for the same FADbkg value.

thank you in advance