]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/PHOS/AliHLTPHOSMapper.h
Follow moving energy to CaloCells
[u/mrichter/AliRoot.git] / HLT / PHOS / AliHLTPHOSMapper.h
CommitLineData
2f09efe8 1#ifndef ALIHLTPHOSMAPPER_H
2#define ALIHLTPHOSMAPPER_H
3
fec21787 4
2f09efe8 5/**************************************************************************
6 * This file is property of and copyright by the Experimental Nuclear *
7 * Physics Group, Dep. of Physics *
8 * University of Oslo, Norway, 2006 *
9 * *
10 * Author: Per Thomas Hille perthi@fys.uio.no for the ALICE DCS Project. *
11 * Contributors are mentioned in the code where appropriate. *
12 * Please report bugs to perthi@fys.uio.no *
13 * *
14 * Permission to use, copy, modify and distribute this software and its *
15 * documentation strictly for non-commercial purposes is hereby granted *
16 * without fee, provided that the above copyright notice appears in all *
17 * copies and that both the copyright notice and this permission notice *
18 * appear in the supporting documentation. The authors make no claims *
19 * about the suitability of this software for any purpose. It is *
20 * provided "as is" without express or implied warranty. *
21 **************************************************************************/
22
c37f821f 23#include "AliHLTPHOSBase.h"
af6a2273 24
25//using namespace PhosHLTConst;
2f09efe8 26
c37f821f 27class AliHLTPHOSMapper : public AliHLTPHOSBase
2f09efe8 28{
29 public:
30 AliHLTPHOSMapper();
c37f821f 31 virtual ~AliHLTPHOSMapper();
32 void InitAltroMapping();
c37f821f 33
af6a2273 34 struct fAltromap{
35 int fZRow; // Coordinate in Z direction (beam direction) relatve too one RCU
36 int fXCol; // Coordinate in X direction (perpendicular too beam direction an parallell to ground) relatve too one RCU
37 int fGain; // Gain (high gain = 1, low gain = 0)
c37f821f 38 };
39
af6a2273 40 fAltromap *fHw2geomapPtr; //pointer to structure holding information about geometrical address
c37f821f 41
b444d727 42 private:
43 AliHLTPHOSMapper(const AliHLTPHOSMapper & );
44 AliHLTPHOSMapper & operator = (const AliHLTPHOSMapper &);
45
2f09efe8 46};
47
48#endif