]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSRawCluster.h
Update the Print methods (Laurent)
[u/mrichter/AliRoot.git] / ITS / AliITSRawCluster.h
... / ...
CommitLineData
1#ifndef ALIITSRAWCLUSTER_H
2#define ALIITSRAWCLUSTER_H
3
4////////////////////////////////////////////////////
5// Cluster classes for set:ITS //
6////////////////////////////////////////////////////
7
8#include <TObject.h>
9// this class is subject to changes !!! - info used for declustering
10// and eventual debugging
11
12class AliITSRawCluster : public TObject {
13 public:
14 AliITSRawCluster();
15 virtual ~AliITSRawCluster() {// destructor
16 }
17 virtual Bool_t IsSortable() const {// is sortable
18 return kTRUE;}
19 virtual void SetMultiplicity(Int_t m) {fMultiplicity=m;}
20 protected:
21 Int_t fMultiplicity; // cluster multiplicity
22
23 ClassDef(AliITSRawCluster,1) // AliITSRawCluster class
24};
25
26#endif