Line data Source code
1 : #ifndef ALIDIGITSARRAY_H
2 : #define ALIDIGITSARRAY_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id$ */
7 :
8 : /// \class AliDigitsArray
9 : ///
10 : /// Manager class for AliDigitsArray
11 :
12 : #include "AliSegmentArray.h"
13 : class AliDetectorParam;
14 :
15 : class AliDigitsArray : public AliSegmentArray {
16 : public:
17 : AliDigitsArray();
18 : AliDigitsArray(const AliDigitsArray ¶m); // copy constructor
19 : AliDigitsArray &operator = (const AliDigitsArray & param);
20 : virtual ~AliDigitsArray();
21 : virtual Bool_t Setup(AliDetectorParam *param); //setup array according parameters
22 0 : const AliDetectorParam * GetParam() {return fParam;}
23 : virtual Bool_t SetParam(AliDetectorParam * param);
24 : protected:
25 : AliDetectorParam * fParam; ///< pointer to detector parameters
26 24 : ClassDef(AliDigitsArray,1) // Digits manager
27 : };
28 :
29 : #endif //ALIDIGITSARRAY_H
|