]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDrecpoint1.h
Using AliPHOSLoader instead of AliPHOSGetter
[u/mrichter/AliRoot.git] / PMD / AliPMDrecpoint1.h
CommitLineData
a918d77a 1#ifndef ALIPMDRECPOINT1_H
2#define ALIPMDRECPOINT1_H
3a71056b 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
caf8468f 5//-----------------------------------------------------//
6// //
7// //
8// Date : August 05 2003 //
9// //
10// Store reconstructed points for PMD //
11// //
12//-----------------------------------------------------//
13
caf8468f 14#include "Rtypes.h"
15#include "TObject.h"
a918d77a 16class TClonesArray;
caf8468f 17
3a71056b 18class AliPMDrecpoint1 : public TObject
caf8468f 19{
caf8468f 20
21 public:
3a71056b 22 AliPMDrecpoint1();
afef6247 23 AliPMDrecpoint1(Int_t idet, Int_t ismn, Float_t *clusdata);
a48edddd 24 AliPMDrecpoint1(AliPMDrecpoint1 *pmdrecpoint);
a918d77a 25 AliPMDrecpoint1 (const AliPMDrecpoint1 &pmdrecpoint); // copy constructor
26 AliPMDrecpoint1 &operator=(const AliPMDrecpoint1 &pmdrecpoint); // assignment op
caf8468f 27
3a71056b 28 virtual ~AliPMDrecpoint1();
caf8468f 29
afef6247 30 Int_t GetDetector() const;
31 Int_t GetSMNumber() const;
caf8468f 32 Float_t GetClusX() const;
33 Float_t GetClusY() const;
34 Float_t GetClusADC() const;
35 Float_t GetClusCells() const;
d5571fed 36 Float_t GetClusSigmaX() const;
37 Float_t GetClusSigmaY() const;
caf8468f 38
a918d77a 39 protected:
40
afef6247 41 Int_t fDet; // Detector No (0:PRE, 1:CPV)
42 Int_t fSMN; // Serial Module No.
e18cbaed 43 Float_t fClusData[6]; // Array containing cluster information
a918d77a 44 /*
afef6247 45 fDet : Detector Number, fSMN : Serial Module Number
46 fClusData[0] : Cluster x , fClusData[1] : Cluster y
47 fClusData[2] : Cluster adc , fClusData[3] : Cluster Cells
d5571fed 48 fClusData[4] : Cluster SigmaX , fClusData[5] : Cluster SigmaY
a918d77a 49 */
50
a48edddd 51 ClassDef(AliPMDrecpoint1,4) // keep reconstructed points info
caf8468f 52};
53
54#endif