]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/CALO/AliHLTCaloGeometry.h
- adding geometry classes to facilitate for having a CALO class for evaluating cluste...
[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:
23 AliHLTCaloGeometry (TString det);
24 virtual ~AliHLTCaloGeometry();
25 virtual void GetGlobalCoordinates(AliHLTCaloRecPointDataStruct &recPoint, AliHLTCaloGlobalCoordinate &globalCoord ) = 0;
26
27 private:
28
29
30 AliHLTCaloGeometry();
31
32
33};
34
35#endif
36