AliRoot Core  d69033e (d69033e)
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AliTPCDigitsArray.h
Go to the documentation of this file.
1 #ifndef ALITPCDIGITSARRAY_H
2 #define ALITPCDIGITSARRAY_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 
10 
11 
12 #include "AliDigits.h"
13 #include "AliDigitsArray.h"
14 #include "AliTPCParam.h"
15 
16 class AliDigits;
17 class AliDetectorParam;
18 
20 public:
21  AliTPCDigitsArray(Bool_t sim=kTRUE);
22  virtual ~AliTPCDigitsArray();
23  AliDigits * GetRow(Int_t sector,Int_t row); //return pointer to row from array
24  AliDigits * CreateRow(Int_t sector, Int_t row); //
25  AliDigits * LoadRow(Int_t sector,Int_t row);
26  Bool_t StoreRow(Int_t sector,Int_t row);
27  Bool_t ClearRow(Int_t sector,Int_t row);
28  Bool_t Setup(AliDetectorParam *param);
29 
30  Bool_t IsSimulated(){return fBSim;}
31  Bool_t Update();
32 private:
33  Bool_t fBSim;
34  Int_t fCompression;
35  Int_t fTrackLevel;
36  ClassDef(AliTPCDigitsArray,1) // TPC digits manager
39 };
40 
41 #endif //ALITPCCLUSTERSARRAY_H
Int_t fCompression
default compression for AliDigits - used in storing
Bool_t fBSim
signalize if we have digits with track ID
Manager class for detector parameters.
AliDigits * CreateRow(Int_t sector, Int_t row)
Bool_t ClearRow(Int_t sector, Int_t row)
Time Projection Chamber clusters objects.
void sim(char *configPath, char *tpcDbpath, Int_t nevents)
Definition: sim.C:3
Bool_t StoreRow(Int_t sector, Int_t row)
AliDigits * LoadRow(Int_t sector, Int_t row)
Bool_t Setup(AliDetectorParam *param)
AliDigits * GetRow(Int_t sector, Int_t row)
AliTPCDigitsArray(Bool_t sim=kTRUE)