Re: fDelta in TEventList
Rene Brun (Rene.Brun@cern.ch)
Mon, 24 Aug 1998 17:37:50 +0200
Andy Haas wrote:
>
> Hi,
> Why does the constructor for TEventList do the following...
>
> TEventList::TEventList(const Text_t *name, const Text_t *title, Int_t
> initsize, Int_t delta)
> :TNamed(name,title){
>
> fN = 0;
> if (initsize > 100) fSize = initsize;
> else fSize = 100;
> if (delta > 0) fDelta = 0;
> else fDelta = 100;
> fList = 0;
> fDirectory = gDirectory;
> AppendDirectory();
> }
>
> -------------------
> If one tries to set fDelta above a hundred, fDelta gets set to
> zero?!@% Why? I'd like to make it much higher, since I'm dealing with
> large numbers of events (>100!!!) and there's currently no way that I
> can see to do it.
>
Andy,
You are right. I have fixed this small problem in the dev version.
Rene Brun