]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSGeometry.h
- fixing compilation warnings
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSGeometry.h
CommitLineData
505b442d 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#ifndef ALIHLTPHOSGEOMETRY_H
17#define ALIHLTPHOSGEOMETRY_H
18
19#include "AliHLTCaloGeometry.h"
20
f710c5c9 21class AliPHOSGeoUtils;
22
505b442d 23class AliHLTPHOSGeometry : public AliHLTCaloGeometry
24 {
25 public:
26
27 /** Default constructor */
28 AliHLTPHOSGeometry (); //COMMENT
29
30 /** Destructor */
31 virtual ~AliHLTPHOSGeometry (); //COMMENT
32
33 /** Get the ALICE global coordinates for a rec point */
34 virtual void GetGlobalCoordinates ( AliHLTCaloRecPointDataStruct& recPoint, AliHLTCaloGlobalCoordinate& globalCoord ); //COMMENT
73d6f579 35
36 /** See base class for class documentation */
ea54e1c8 37 virtual void GetCellAbsId(UInt_t /*module*/, UInt_t /*x*/, UInt_t /*z*/, Int_t& AbsId) const { AbsId = 0; }
f710c5c9 38
39 /** Intialise the geometry from the HCDB/OCDB */
40 virtual Int_t InitialiseGeometry() {return 0; }
98baf84d 41
f710c5c9 42 private:
43
44 /** Geometry class from offline code */
45 AliPHOSGeoUtils *fGeoUtils; //! transient
ea54e1c8 46
47 /** Copy constructor, not implemented */
48 AliHLTPHOSGeometry (const AliHLTPHOSGeometry&); //COMMENT
49
50 /** Assignment operator, not implemented */
51 AliHLTPHOSGeometry & operator = (const AliHLTPHOSGeometry&); //COMMENT
505b442d 52 };
53
54#endif // ALIHLTPHOSGEOMETRY_H