Logo ROOT   6.10/09
Reference Guide
TArrayS.cxx
Go to the documentation of this file.
1 // @(#)root/cont:$Id$
2 // Author: Rene Brun 06/03/95
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 /** \class TArrayS
13 \ingroup Containers
14 Array of shorts (16 bits per element).
15 */
16 
17 #include "TArrayS.h"
18 #include "TBuffer.h"
19 
20 
22 
23 ////////////////////////////////////////////////////////////////////////////////
24 /// Default TArrayS ctor.
25 
27 {
28  fArray = 0;
29 }
30 
31 ////////////////////////////////////////////////////////////////////////////////
32 /// Create TArrayS object and set array size to n shorts.
33 
35 {
36  fArray = 0;
37  if (n > 0) Set(n);
38 }
39 
40 ////////////////////////////////////////////////////////////////////////////////
41 /// Create TArrayS object and initialize it with values of array.
42 
44 {
45  fArray = 0;
46  Set(n, array);
47 }
48 
49 ////////////////////////////////////////////////////////////////////////////////
50 /// Copy constructor.
51 
52 TArrayS::TArrayS(const TArrayS &array) : TArray(array)
53 {
54  fArray = 0;
55  Set(array.fN, array.fArray);
56 }
57 
58 ////////////////////////////////////////////////////////////////////////////////
59 /// TArrayS assignment operator.
60 
62 {
63  if (this != &rhs)
64  Set(rhs.fN, rhs.fArray);
65  return *this;
66 }
67 
68 ////////////////////////////////////////////////////////////////////////////////
69 /// Delete TArrayS object.
70 
72 {
73  delete [] fArray;
74  fArray = 0;
75 }
76 
77 ////////////////////////////////////////////////////////////////////////////////
78 /// Adopt array arr into TArrayS, i.e. don't copy arr but use it directly
79 /// in TArrayS. User may not delete arr, TArrayS dtor will do it.
80 
82 {
83  if (fArray)
84  delete [] fArray;
85 
86  fN = n;
87  fArray = arr;
88 }
89 
90 ////////////////////////////////////////////////////////////////////////////////
91 /// Add short c at position i. Check for out of bounds.
92 
94 {
95  if (!BoundsOk("TArrayS::AddAt", i)) return;
96  fArray[i] = c;
97 }
98 
99 ////////////////////////////////////////////////////////////////////////////////
100 /// Set size of this array to n shorts.
101 /// A new array is created, the old contents copied to the new array,
102 /// then the old array is deleted.
103 /// This function should not be called if the array was declared via Adopt.
104 
106 {
107  if (n < 0) return;
108  if (n != fN) {
109  Short_t *temp = fArray;
110  if (n != 0) {
111  fArray = new Short_t[n];
112  if (n < fN) memcpy(fArray,temp, n*sizeof(Short_t));
113  else {
114  memcpy(fArray,temp,fN*sizeof(Short_t));
115  memset(&fArray[fN],0,(n-fN)*sizeof(Short_t));
116  }
117  } else {
118  fArray = 0;
119  }
120  if (fN) delete [] temp;
121  fN = n;
122  }
123 }
124 
125 ////////////////////////////////////////////////////////////////////////////////
126 /// Set size of this array to n shorts and set the contents.
127 /// This function should not be called if the array was declared via Adopt.
128 
129 void TArrayS::Set(Int_t n, const Short_t *array)
130 {
131  if (fArray && fN != n) {
132  delete [] fArray;
133  fArray = 0;
134  }
135  fN = n;
136  if (fN == 0) return;
137  if (array == 0) return;
138  if (!fArray) fArray = new Short_t[fN];
139  memmove(fArray, array, n*sizeof(Short_t));
140 }
141 
142 ////////////////////////////////////////////////////////////////////////////////
143 /// Stream a TArrayS object.
144 
145 void TArrayS::Streamer(TBuffer &b)
146 {
147  if (b.IsReading()) {
148  Int_t n;
149  b >> n;
150  Set(n);
151  b.ReadFastArray(fArray,n);
152  } else {
153  b << fN;
154  b.WriteFastArray(fArray, fN);
155  }
156 }
157 
Abstract array base class.
Definition: TArray.h:31
Bool_t IsReading() const
Definition: TBuffer.h:81
Short_t * fArray
Definition: TArrayS.h:30
void AddAt(Short_t c, Int_t i)
Add short c at position i. Check for out of bounds.
Definition: TArrayS.cxx:93
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
int Int_t
Definition: RtypesCore.h:41
Bool_t BoundsOk(const char *where, Int_t at) const
Definition: TArray.h:77
virtual ~TArrayS()
Delete TArrayS object.
Definition: TArrayS.cxx:71
void Set(Int_t n)
Set size of this array to n shorts.
Definition: TArrayS.cxx:105
TArrayS & operator=(const TArrayS &rhs)
TArrayS assignment operator.
Definition: TArrayS.cxx:61
Int_t fN
Definition: TArray.h:38
TArrayS()
Default TArrayS ctor.
Definition: TArrayS.cxx:26
Array of shorts (16 bits per element).
Definition: TArrayS.h:27
short Short_t
Definition: RtypesCore.h:35
virtual void ReadFastArray(Bool_t *b, Int_t n)=0
virtual void WriteFastArray(const Bool_t *b, Int_t n)=0
#define ClassImp(name)
Definition: Rtypes.h:336
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
const Int_t n
Definition: legend1.C:16
void Adopt(Int_t n, Short_t *array)
Adopt array arr into TArrayS, i.e.
Definition: TArrayS.cxx:81