Array parameters for function used in Draw

From: Dmitry A. Shtol <D.A.Shtol_at_inp.nsk.su>
Date: Thu, 20 Jan 2011 15:21:36 +0600


Hello!

Let's I need to use in Draw function a function with parameter. Just as example:

Double_t partest(Double_t energy) {

   return energy;
}

I can use:
chain->Draw("partest(energy)");

And it works.

Now I have a vector parameter in tree, which normally is used:

chain->Draw("energy[0]")

How to use it in function? If I write

Double_t partest(Double_t* energy) {

   return energy[0];
}

chain->Draw("partest(energy)")

This doesn't work.

Thanks in advance,

-- 
Dmitry A. Shtol                        (SND group)    
Budker Institute of Nuclear Physics
Received on Thu Jan 20 2011 - 10:21:42 CET

This archive was generated by hypermail 2.2.0 : Thu Jan 20 2011 - 17:50:01 CET