]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/AliHLTCaloGeometry.h
- fixing problem in handling resizing of memory buffer
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloGeometry.h
CommitLineData
505b442d 1//-*- Mode: C++ -*-
2#ifndef ALIHLTCALOGEOMETRY_H
3#define ALIHLTCALOGEOMETRY_H
4/* Copyright(c) 1998-2004, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7// Author: Federico Ronchetti
8
9#include "Rtypes.h"
10#include "AliHLTCaloConstants.h"
11#include "AliHLTCaloConstantsHandler.h"
12#include "AliHLTCaloCoordinate.h"
13#include "AliHLTCaloGlobalCoordinate.h"
14#include "AliHLTCaloRecPointDataStruct.h"
15
16class AliHLTCaloCoordinate;
17class AliHLTCaloGlobalCoordinate;
18
19class AliHLTCaloGeometry : public AliHLTCaloConstantsHandler
20{
21
22 public:
f710c5c9 23 AliHLTCaloGeometry (TString det);
24 virtual ~AliHLTCaloGeometry();
25
26 virtual void GetGlobalCoordinates(AliHLTCaloRecPointDataStruct &recPoint, AliHLTCaloGlobalCoordinate &globalCoord ) = 0;
27
98baf84d 28 virtual void GetCellAbsId(UInt_t module, UInt_t x, UInt_t z, Int_t& AbsId) const = 0; //COMMENT
f710c5c9 29
30 private:
31
32 /** Default constructor, not implemented */
98baf84d 33 AliHLTCaloGeometry(); //COMMENT
505b442d 34
35
36};
37
38#endif
39