]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCClustersRow.h
caching the information is trigger L0
[u/mrichter/AliRoot.git] / TPC / AliTPCClustersRow.h
1 #ifndef ALITPCCLUSTERROW_H
2 #define ALITPCCLUSTERROW_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 TPC   clusters                   //
10 ////////////////////////////////////////////////
11
12
13 #include "AliClusters.h"
14
15 class TObject;
16
17
18 class AliTPCClustersRow : public AliClusters{
19 public:
20   AliTPCClustersRow();
21   AliTPCClustersRow(const char *classname); // special constructor
22   virtual TObject *InsertCluster(const TObject *c);
23   virtual TObject *Append();  //create new object return pointer to this object
24
25 public:
26   
27   ClassDef(AliTPCClustersRow,1) // Cluster manager 
28 };  
29 #endif //ALITPCCLUSTERROW_H
30
31
32
33
34
35
36