]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
bug fixed for alignment, removed alignment database access from AliPMDUtility class
authorbasanta <basanta@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 14 Sep 2010 16:47:52 +0000 (16:47 +0000)
committerbasanta <basanta@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 14 Sep 2010 16:47:52 +0000 (16:47 +0000)
PMD/AliPMDUtility.h

index 2675edd3f69d59356d74e60a023a39b3260400a4..dbdbc45355bf425e02f2ab0b295b76f4b1eca5d2 100644 (file)
 //  Utility class for PMD                              //
 //                                                     //
 //-----------------------------------------------------//
-// Author - B.K. Nandi
+// Author - 
 //
 #include "Rtypes.h"
 
-class TClonesArray;
 
 class AliPMDUtility:public TObject
 {
@@ -41,7 +40,7 @@ class AliPMDUtility:public TObject
 
   void ApplyVertexCorrection(Float_t vertex[], 
                             Float_t xpos, Float_t ypos, Float_t zpos);
-  void ApplyAlignment();
+  void ApplyAlignment(Double_t sectr[][3]);
   void SetPxPyPz(Float_t px, Float_t py, Float_t pz);
   void SetXYZ(Float_t xpos, Float_t ypos, Float_t zpos);
   void SetWriteModule(Int_t wrmod);
@@ -55,15 +54,9 @@ class AliPMDUtility:public TObject
   Float_t GetX() const;
   Float_t GetY() const;
   Float_t GetZ() const;
-
-  TClonesArray *GetAlignObj() const;
-
-
   
  protected:
 
-  TClonesArray *fAlObj;     // Alignable objects
-
   Float_t fPx;     // Momentum along x
   Float_t fPy;     // Momentum along y
   Float_t fPz;     // Momentum along z
@@ -73,7 +66,7 @@ class AliPMDUtility:public TObject
   Float_t fSecTr[4][3]; // Sector alignement (translation)
   Int_t   fWriteModule;  // Module number writing 
   
-  ClassDef(AliPMDUtility,6) // Utility class for the detector set:PMD
+  ClassDef(AliPMDUtility,7) // Utility class for the detector set:PMD
 };
 
 #endif