// @(#)root/cont:$Name: $:$Id: TArrayF.h,v 1.1.1.1 2000/05/16 17:00:40 rdm Exp $ // Author: Rene Brun 06/03/95 /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TArrayF #define ROOT_TArrayF ////////////////////////////////////////////////////////////////////////// // // // TArrayF // // // // Array of floats (32 bits per element). // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_TArray #include "TArray.h" #endif class TArrayF : public TArray { public: Float_t *fArray; //[fN] Array of fN floats TArrayF(); TArrayF(Int_t n); TArrayF(Int_t n, Float_t *array); TArrayF(const TArrayF &array); TArrayF &operator=(const TArrayF &rhs); virtual ~TArrayF(); void Adopt(Int_t n, Float_t *array); void AddAt(Float_t c, Int_t i); Float_t At(Int_t i); void Copy(TArrayF &array) {array.Set(fN); for (Int_t i=0;i