]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSCorrMap2DSDD.h
- fixing compilation warnings
[u/mrichter/AliRoot.git] / ITS / AliITSCorrMap2DSDD.h
CommitLineData
54af1add 1#ifndef ALIITSCORRMAP2DSDD_H
2#define ALIITSCORRMAP2DSDD_H
0ec6d8a9 3/* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
54af1add 6/* $Id$ */
0ec6d8a9 7
8///////////////////////////////////////////////////////////////////
9// //
10// Class for SDD maps in 2D used to correct for //
11// voltage divider shape and doping fluctuations //
12// Origin: F.Prino, Torino, prino@to.infn.it //
13// //
14///////////////////////////////////////////////////////////////////
15
16#include "AliITSsegmentationSDD.h"
17#include<TNamed.h>
18#include "AliLog.h"
19class TH1F;
20class TH2F;
21
54af1add 22class AliITSCorrMap2DSDD : public AliITSCorrMapSDD {
0ec6d8a9 23
24 public:
54af1add 25 AliITSCorrMap2DSDD();
26 AliITSCorrMap2DSDD(Char_t *mapname);
27 AliITSCorrMap2DSDD(Char_t *mapname, Int_t nbinsan, Int_t nbinsdr);
28 virtual ~AliITSCorrMap2DSDD(){};
0ec6d8a9 29
30 virtual void ResetMap();
31 virtual void Set2DMap(TH2F* hmap);
32 virtual void SetCellContent(Int_t iAn, Int_t iTb, Float_t devMicron){
54af1add 33 if(CheckAnodeBounds(iAn) && CheckDriftBounds(iTb)) fCorrMap[iAn][iTb]=(Short_t)(devMicron*10.+0.5);
0ec6d8a9 34 }
35
36 virtual Float_t GetCellContent(Int_t iAn, Int_t iTb) const {
54af1add 37 if(CheckAnodeBounds(iAn) && CheckDriftBounds(iTb)) return (Float_t)fCorrMap[iAn][iTb]/10.;
0ec6d8a9 38 else return 0.;
39 }
40
41 protected:
54af1add 42 Short_t fCorrMap[kMaxNAnodePts][kMaxNDriftPts]; // map of deviations
0ec6d8a9 43 // stored as Short_t: integer
44 // values from -32000 to 32000
45 // in the range -3.2 - 3.2 mm
46
54af1add 47 ClassDef(AliITSCorrMap2DSDD,1);
0ec6d8a9 48};
49#endif