]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDclupid.h
method Ranmar is removed
[u/mrichter/AliRoot.git] / PMD / AliPMDclupid.h
1 #ifndef ALIPMDCLUPID_H
2 #define ALIPMDCLUPID_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5 //-----------------------------------------------------//
6 //                                                     //
7 //  Date   : March 22 2004                             //
8 //                                                     //
9 //  Store cluster informations for PMD                 //
10 //  after Discrimination                               //
11 //                                                     //
12 //-----------------------------------------------------//
13 // Author - B.K. Nandi
14 //
15 #include "Rtypes.h"
16 #include "TObject.h"
17 class TClonesArray;
18
19 class AliPMDclupid : public TObject
20 {
21  public:
22   AliPMDclupid();
23   AliPMDclupid(Int_t idet, Int_t ismn, Float_t *clusdata);
24   AliPMDclupid(AliPMDclupid *pmdclupid);
25   AliPMDclupid (const AliPMDclupid &pmdclupid);  // copy constructor
26   AliPMDclupid &operator=(const AliPMDclupid &pmdclupid); // assignment op
27   
28   virtual ~AliPMDclupid();
29
30   Int_t   GetDetector() const;
31   Int_t   GetSMN() const;
32   Float_t GetClusX() const;
33   Float_t GetClusY() const;
34   Float_t GetClusADC() const;
35   Float_t GetClusCells() const;
36   Float_t GetClusRadius() const;
37   Float_t GetClusPID() const;
38
39  protected:
40
41   Int_t   fDet;          // Detector No (0:PRE, 1:CPV)
42   Int_t   fSMN;          // Serial Module No.
43   Float_t fClusData[6];  // Array containing clupid information
44   /*
45     fDet         : Det (0:PRE, 1:CPV), fSMN         : SerialModuleNo
46     fClusData[0] : Cluster x         , fClusData[1] : Cluster y
47     fClusData[2] : Cluster adc       , fClusData[3] : Cluster Cells
48     fClusData[4] : Cluster radius    , fClusData[5] : Cluster pid
49   */
50   
51   ClassDef(AliPMDclupid,2) // Keep Cluster information
52 };
53
54 #endif