]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDUtility.h
Add SetOwner() for output lists
[u/mrichter/AliRoot.git] / PMD / AliPMDUtility.h
CommitLineData
a918d77a 1#ifndef ALIPMDUTILITY_H
2#define ALIPMDUTILITY_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
638f6e9b 5//-----------------------------------------------------//
6// //
7// //
8// Date : August 05 2003 //
9// //
10// Utility class for PMD //
11// //
12//-----------------------------------------------------//
74574deb 13// Author -
5d35baec 14//
638f6e9b 15#include "Rtypes.h"
dc461f61 16
dc461f61 17
18class AliPMDUtility:public TObject
638f6e9b 19{
638f6e9b 20 public:
21 AliPMDUtility();
a918d77a 22 AliPMDUtility(Float_t px, Float_t py, Float_t pz);
5d35baec 23 AliPMDUtility(const AliPMDUtility &pmdutil); // copy constructor
24 AliPMDUtility &operator=(const AliPMDUtility &pmdutil); // assignment op
638f6e9b 25 virtual ~AliPMDUtility();
afb8e3a0 26
5d35baec 27
01c4d84a 28 void RectGeomCellPos(Int_t ism, Int_t xpad, Int_t ypad,
a918d77a 29 Float_t & xpos, Float_t & ypos);
01c4d84a 30 void RectGeomCellPos(Int_t ism, Float_t xpad, Float_t ypad,
a918d77a 31 Float_t & xpos, Float_t & ypos);
2c08d1c1 32
dc461f61 33 void RectGeomCellPos(Int_t ism, Float_t xpad, Float_t ypad,
34 Float_t & xpos, Float_t & ypos, Float_t & zpos);
35
2c08d1c1 36 void GenerateBoundaryPoints(Int_t ism, Float_t &x1ism, Float_t &y1ism
37 , Float_t &x2ism, Float_t &y2ism);
38
27f6261d 39 void DrawPMDModule(Int_t idet);
2c08d1c1 40
5d35baec 41 void ApplyVertexCorrection(Float_t vertex[],
42 Float_t xpos, Float_t ypos, Float_t zpos);
74574deb 43 void ApplyAlignment(Double_t sectr[][3]);
a918d77a 44 void SetPxPyPz(Float_t px, Float_t py, Float_t pz);
45 void SetXYZ(Float_t xpos, Float_t ypos, Float_t zpos);
2c08d1c1 46 void SetWriteModule(Int_t wrmod);
638f6e9b 47 void CalculateEta();
48 void CalculatePhi();
49 void CalculateEtaPhi();
5d35baec 50 void CalculateXY(Float_t eta, Float_t phi, Float_t zpos);
638f6e9b 51 Float_t GetTheta() const;
52 Float_t GetEta() const;
53 Float_t GetPhi() const;
5d35baec 54 Float_t GetX() const;
55 Float_t GetY() const;
56 Float_t GetZ() const;
638f6e9b 57
a918d77a 58 protected:
dc461f61 59
a918d77a 60 Float_t fPx; // Momentum along x
61 Float_t fPy; // Momentum along y
62 Float_t fPz; // Momentum along z
63 Float_t fTheta; // Polar angle in radian
64 Float_t fEta; // Pseudo-rapidity
65 Float_t fPhi; // Azimuthal angle in radian
dc461f61 66 Float_t fSecTr[4][3]; // Sector alignement (translation)
2c08d1c1 67 Int_t fWriteModule; // Module number writing
a918d77a 68
74574deb 69 ClassDef(AliPMDUtility,7) // Utility class for the detector set:PMD
638f6e9b 70};
71
72#endif