]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/PHOS/AliHLTPHOSGeometry.cxx
- cleaning up debug output
[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
18
19
20 AliHLTPHOSGeometry::AliHLTPHOSGeometry() :
21 AliHLTCaloGeometry("PHOS")
22 {
23  // See header file for class documentation
24 }
25
26 AliHLTPHOSGeometry::~AliHLTPHOSGeometry()
27 {
28 // See header file for class documentation
29 }
30
31 void AliHLTPHOSGeometry::GetGlobalCoordinates ( AliHLTCaloRecPointDataStruct& /*recPoint*/, AliHLTCaloGlobalCoordinate& globalCoord )
32 {
33    // See header file for class documentation
34    globalCoord.fX = 0;
35    globalCoord.fZ = 0;
36    globalCoord.fY = 0;
37 }