AliRoot Core  3dc7879 (3dc7879)
AliDigitsArray.cxx
Go to the documentation of this file.
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 
18 
19 #include "TObject.h"
20 #include "AliSegmentID.h"
21 #include "TObjArray.h"
22 
23 #include "TError.h"
24 #include "AliDigits.h"
25 #include "AliDetectorParam.h"
26 #include "AliDigitsArray.h"
27 
28 
29 
31 ClassImp(AliDigitsArray)
33 
35  :AliSegmentArray(),
36  fParam(0)
37 {
39 }
41  :AliSegmentArray(),
42  fParam(0)
43 {
45 
46  fParam = param.fParam;
47 }
48 //
50 {
52 
53  if (this == &param) return (*this);
54  fParam = param.fParam;
55  return (*this);
56 }
57 //
59 {
61 
62 }
63 
65 {
67 
68  SetParam(param);
69  return kTRUE;
70 }
71 
72 
74 {
75  fParam = param;
76  return kTRUE;
77 }
AliDetectorParam * fParam
pointer to detector parameters
Manager class for detector parameters.
virtual Bool_t SetParam(AliDetectorParam *param)
AliDigitsArray & operator=(const AliDigitsArray &param)
virtual Bool_t Setup(AliDetectorParam *param)
virtual ~AliDigitsArray()