]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDarrayI.cxx
5293c057977b58ec04e0f94556e32b816f7ee273
[u/mrichter/AliRoot.git] / TRD / AliTRDarrayI.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /*
17 $Log$
18 Revision 1.1.4.1  2000/05/08 14:35:54  cblume
19 Update
20
21 Revision 1.1  2000/02/28 18:57:18  cblume
22 Add new TRD classes
23
24 */
25
26 ///////////////////////////////////////////////////////////////////////
27 //                                                                   //  
28 // Added additional functionality to the original TArrayI.           //
29 //  - Multiple inheritance from TObject                              //
30 //  - Function Expand() allows to expand the array without           //
31 //    deleting the array contents                                    //
32 //                                                                   //
33 // Origin:  Marian Ivanov, Uni. of Bratislava, ivanov@fmph.uniba.sk  // 
34 //                                                                   //  
35 ///////////////////////////////////////////////////////////////////////
36
37 #include "AliTRDarrayI.h"
38
39 ClassImp(AliTRDarrayI)
40
41 //_____________________________________________________________________________
42 AliTRDarrayI::~AliTRDarrayI()
43 {
44   //
45   // Default destructor
46   //
47
48 }
49
50 //_____________________________________________________________________________
51 void AliTRDarrayI::Expand(Int_t n)
52 {
53   //
54   // Sets the  array size of the TArrayI object to <n> integers and copies
55   // the old array.
56   // If n < 0 leave the array unchanged.
57   // The user is responsible for the appropriate size of the array.
58   //
59
60   if (n < 0) return;  
61   fArray = (Int_t*) TStorage::ReAlloc(fArray
62                                      ,n  * sizeof(Int_t)
63                                      ,fN * sizeof(Int_t));
64   if (fArray != 0) fN = n;
65  
66 }
67