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