]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliAODCaloCells.h
Fix for Savannah bug report 59287
[u/mrichter/AliRoot.git] / STEER / AliAODCaloCells.h
CommitLineData
8d122774 1/* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4/* $Id$ */
5
6//-------------------------------------------------------------------------
7// AOD class to store calorimeter cell data
8// Author: Markus Oldenburg, CERN
9//-------------------------------------------------------------------------
10
11#ifndef ALIAODCELLS_H
12#define ALIAODCELLS_H
13
14#include <TNamed.h>
15#include <TMath.h>
16
17class AliAODCaloCells : public TNamed
18{
19 public:
e649177a 20 enum AODCells_t {kUndef = -1,
8d122774 21 kEMCAL,
22 kPHOS};
23
24 AliAODCaloCells();
e649177a 25 AliAODCaloCells(const char* name, const char* title, AODCells_t ttype=kUndef);
5c1dc41f 26 AliAODCaloCells(const AliAODCaloCells& cells);
27 AliAODCaloCells& operator=(const AliAODCaloCells& cells);
8d122774 28
29 virtual ~AliAODCaloCells();
30
31 void CreateContainer(Short_t nCells);
32 void DeleteContainer();
33 void Sort();
34
35 Bool_t SetCell(Short_t pos, Short_t cellNumber, Double_t amplitude);
36
37 Short_t GetNumberOfCells() const { return fNCells; }
38 inline Bool_t GetCell(Short_t pos, Short_t &cellNumber, Double_t &amplitude) const;
39 inline Double_t GetCellAmplitude(Short_t cellNumber);
b4620c80 40 inline Short_t GetCellPosition(Short_t cellNumber);
8d122774 41 inline Double_t GetAmplitude(Short_t pos) const;
42 inline Short_t GetCellNumber(Short_t pos) const;
43
44 Char_t GetType() const { return fType;}
e649177a 45 void SetType(AODCells_t ttype) { fType=ttype; }
8d122774 46
47 protected:
48 Int_t fNCells; // Number of cells
49 Short_t *fCellNumber; //[fNCells] array of cell numbers
e649177a 50 Double32_t *fAmplitude; //[fNCells][0.,0.,16] array with cell amplitudes (= energy!)
8d122774 51 Bool_t fIsSorted; //! true if cell arrays are sorted by index
52 Char_t fType; // Cell type
53
8d122774 54
55 ClassDef(AliAODCaloCells, 1);
56};
57
58
59Bool_t AliAODCaloCells::GetCell(Short_t pos, Short_t &cellNumber, Double_t &amplitude) const
60{
61 if (pos>=0 && pos<fNCells) {
62 cellNumber = fCellNumber[pos];
63 amplitude = fAmplitude[pos];
64 return kTRUE;
65 } else {
37792174 66 Warning("GetCell","Invalid cell array index %d", pos);
8d122774 67 return kFALSE;
68 }
69}
70
71
72Double_t AliAODCaloCells::GetCellAmplitude(Short_t cellNumber)
73{
74 if (!fIsSorted) {
75 Sort();
76 fIsSorted=kTRUE;
77 }
78
79 Short_t pos = TMath::BinarySearch(fNCells, fCellNumber, cellNumber);
37792174 80 if (pos>=0 && fCellNumber[pos] == cellNumber) {
8d122774 81 return fAmplitude[pos];
82 } else {
37792174 83 Warning("GetCellAmplitude","Wrong cell array index %d", pos);
8d122774 84 return 0.;
85 }
86}
87
88
89Double_t AliAODCaloCells::GetAmplitude(Short_t pos) const
90{
91 if (pos>=0 && pos<fNCells) {
92 return fAmplitude[pos];
93 } else {
37792174 94 Warning("GetAmplitude","Invalid cell array index %d", pos);
8d122774 95 return 0.;
96 }
97}
98
99
100Short_t AliAODCaloCells::GetCellNumber(Short_t pos) const
101{
102 if (pos>=0 && pos<fNCells) {
103 return fCellNumber[pos];
104 } else {
37792174 105 Warning("GetCellNumber","Invalid cell array index %d", pos);
8d122774 106 return fNCells;
107 }
108}
109
b4620c80 110Short_t AliAODCaloCells::GetCellPosition(Short_t cellNumber)
111{
112 if (!fIsSorted) {
113 Sort();
114 fIsSorted=kTRUE;
115 }
116
117 Int_t nabove, nbelow, middle;
118 Short_t pos = -1;
119
120 nabove = fNCells + 1;
121 nbelow = 0;
122 while (nabove - nbelow > 1) {
123 middle = (nabove + nbelow) / 2;
124 if (cellNumber == fCellNumber[middle-1]) {
125 pos = middle - 1;
126 break;
127 }
128 if (cellNumber < fCellNumber[middle-1]) nabove = middle;
129 else nbelow = middle;
130 }
131
132 return pos;
133}
134
8d122774 135
136#endif