Hi all,
I would like to change the color of one of two curve from a graph coming from a tree. See below the code:
TTree *a ;
TFile *f=new TFile("tree1.root");
f->ls();
a=(TTree *)f->Get("t");
a->Draw("Elabh","CUTG","");
a->Draw("Elabl","CUTG","same");
I would like that Elabl is on the same graph as Elabh but in another color, for example green.
Any help is welcome.
Thanks