]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliDigitsArray.h
Put back the two bellows in front of the absorber.
[u/mrichter/AliRoot.git] / TPC / AliDigitsArray.h
CommitLineData
cc80f89e 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////////////////////////////////////////////////
9// Manager class for AliDigitsArray //
10////////////////////////////////////////////////
11class AliDetectorParam;
12
13class AliDigitsArray : public AliSegmentArray {
14public:
15 AliDigitsArray();
16 ~AliDigitsArray();
17 virtual Bool_t Setup(AliDetectorParam *param); //setup array according parameters
18 const AliDetectorParam * GetParam() {return fParam;}
19 virtual Bool_t SetParam(AliDetectorParam * param);
20protected:
21 AliDetectorParam * fParam; //pointer to detector parameters
22 ClassDef(AliDigitsArray,1)
23};
24
25#endif //ALIDIGITSARRAY_H