Re: ntuples

Rene Brun (Rene.Brun@cern.ch)
Thu, 26 Mar 1998 08:21:57 +0100


Wolfgang Korsch wrote:
>
> Hi,
> I would like to define something like 30 different ntuples, but
> TNtuple.h has only 15 entries defined. How can I get around this?
> Thanks.
>
> Wolfgang

There are NO limitations on the number of variables in a TNtuple.
This class has two Fill functions:
TNtuple::Fill(Float_t *x) // you should use this one
TNtuple::Fill(Float_t x0,Float_t x1,Float_t x2,..) //limited to
15 args

Rene Brun