]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSGeometry.cxx
- adding new component for the new clusterizer.
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSGeometry.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Authors: Oystein Djuvsland <oysteind@ift.uib.no>                       *
5  *                                                                        *
6  * Permission to use, copy, modify and distribute this software and its   *
7  * documentation strictly for non-commercial purposes is hereby granted   *
8  * without fee, provided that the above copyright notice appears in all   *
9  * copies and that both the copyright notice and this permission notice   *
10  * appear in the supporting documentation. The authors make no claims     *
11  * about the suitability of this software for any purpose. It is          *
12  * provided "as is" without express or implied warranty.                  *
13  **************************************************************************
14 */
15
16 #include "AliHLTPHOSGeometry.h"
17 #include "AliPHOSGeoUtils.h"
18 #include "TGeoManager.h"
19 #include "AliCDBManager.h"
20 #include "AliCDBEntry.h"
21 #include "TVector3.h"
22
23 AliHLTPHOSGeometry::AliHLTPHOSGeometry() :
24 AliHLTCaloGeometry("PHOS"),
25 AliHLTLogging(),
26 fGeoUtils(0)
27 {
28  // See header file for class documentation
29  GetGeometryFromCDB();
30 }
31
32 AliHLTPHOSGeometry::~AliHLTPHOSGeometry()
33 {
34 // See header file for class documentation
35 }
36
37 void AliHLTPHOSGeometry::GetGlobalCoordinates ( AliHLTCaloRecPointDataStruct& recPoint, AliHLTCaloGlobalCoordinate& globalCoord )
38 {
39    // See header file for class documentation
40    if(!fGeoUtils) 
41    {
42       Logging(kHLTLogError, "HLT", "PHOS", "AliHLTPHOSGeometry::GetGlobalCoordinates: no geometry initialised");
43       return;
44    }
45
46    Float_t x = recPoint.fX;
47    Float_t z = recPoint.fZ;
48
49    ConvertRecPointCoordinates(x, z);
50    
51    TVector3 coord;
52    fGeoUtils->Local2Global(fCaloConstants->GetNMODULES() - recPoint.fModule, x, z, coord);
53    
54    globalCoord.fX = coord[0];
55    globalCoord.fY = coord[1];
56    globalCoord.fZ = coord[2];
57    
58 }
59
60 void AliHLTPHOSGeometry::ConvertRecPointCoordinates(Float_t &x, Float_t &z) const
61 {
62    // See header file for class documentation
63    x = (x - (float)(fCaloConstants->GetNXCOLUMNSMOD())/2)*fCaloConstants->GetCELLSTEP();
64    z = (z - ((float)(fCaloConstants->GetNZROWSMOD()))/2)*fCaloConstants->GetCELLSTEP();
65 }
66
67 int AliHLTPHOSGeometry::GetGeometryFromCDB()
68 {
69    // See header file for documentation
70
71    AliCDBPath path("GRP","Geometry","Data");
72    if(path.GetPath())
73     {
74       //      HLTInfo("configure from entry %s", path.GetPath());
75       AliCDBEntry *pEntry = AliCDBManager::Instance()->Get(path/*,GetRunNo()*/);
76       if (pEntry) 
77         {
78           if(!fGeoUtils) 
79             {
80               delete fGeoUtils;
81               fGeoUtils = 0;
82             }
83
84           gGeoManager = (TGeoManager*) pEntry->GetObject();
85 //        HLTError("gGeoManager = 0x%x", gGeoManager);
86           if(gGeoManager)
87             {
88               fGeoUtils = new AliPHOSGeoUtils("PHOS", "noCPV");
89             }
90         }
91       else
92         {
93 //          HLTError("can not fetch object \"%s\" from OCDB", path);
94         }
95     }
96     return 0;
97 }
98
99
100 void AliHLTPHOSGeometry::GetCellAbsId ( UInt_t module, UInt_t x, UInt_t z, Int_t& AbsId ) 
101   {
102       // See header file for class documentation
103       if(!fGeoUtils)
104       {
105          Logging(kHLTLogError, "HLT", "PHOS", "AliHLTPHOSGeometry::GetCellAbsId: no geometry initialised");
106          return;
107       }
108       fGeoUtils->RelPosToAbsId(module, x, z, AbsId);
109   }
110