]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerSegmentationV2.h
First version of Alice alignment object classes (R.Grosso)
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerSegmentationV2.h
CommitLineData
9ff9fab7 1#ifndef ALIMUONTRIGGERSEGMENTATIONV2_H
2#define ALIMUONTRIGGERSEGMENTATIONV2_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8/// \ingroup base
9/// \class AliMUONTriggerSegmentationV2
10/// \brief Segmentation for trigger modules
11///
12/// New implementation of AliMUONVGeometryDESegmentation, based on
13/// mapping package.
14
15#ifndef ALIMUONVGEOMETRYDESEGMENTATION_H
16#include "AliMUONVGeometryDESegmentation.h"
17#endif
18
19#ifndef ALI_MP_PLANE_TYPE_H
20#include "AliMpPlaneType.h"
21#endif
22
23#ifndef ALI_MP_PAD_H
24#include "AliMpPad.h"
25#endif
26
27class AliMpTrigger;
28class AliMpTriggerSegmentation;
29
30class AliMUONTriggerSegmentationV2 : public AliMUONVGeometryDESegmentation
31{
32 public:
33
34 AliMUONTriggerSegmentationV2();
35 AliMUONTriggerSegmentationV2(Int_t detElemId, AliMpPlaneType bendingOrNonBending);
36 virtual ~AliMUONTriggerSegmentationV2();
37
38 /// Distance between 1 pad and a position
39 virtual Float_t Distance2AndOffset(Int_t /*iX*/, Int_t /*iY*/,
40 Float_t /*X*/, Float_t /*Y*/,
41 Int_t * /*dummy*/);
42
43 virtual Float_t Dpx() const;
44 virtual Float_t Dpy() const;
45 virtual Float_t Dpx(Int_t sectorCode) const;
46 virtual Float_t Dpy(Int_t sectorCode) const;
47
48 virtual void Draw(const char */*opt*/ = "");
49
50 void FirstPad(Float_t xhit, Float_t yhit, Float_t zhit,
51 Float_t dx, Float_t dy);
52
53 virtual Bool_t HasPad(Float_t /*x*/, Float_t /*y*/, Float_t /*z*/);
54 virtual Bool_t HasPad(Int_t ix, Int_t iy);
55
56 virtual AliMUONGeometryDirection GetDirection();
57
58 virtual Float_t GetAnod(Float_t /*xhit*/) const;
59
60 virtual void GetPadI(Float_t x ,Float_t y ,Int_t &ix,Int_t &iy);
61 virtual void GetPadI(Float_t x, Float_t y , Float_t z, Int_t &ix, Int_t &iy);
62 virtual void GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y);
63 virtual void GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y, Float_t &z);
64
65 virtual void Init(Int_t);
66
67 virtual void IntegrationLimits(Float_t& x1, Float_t& x2, Float_t& y1, Float_t& y2);
68
69 virtual Int_t ISector();
70 virtual Int_t Ix();
71 virtual Int_t Iy();
72
73 Int_t LineNumber() const;
74
75 virtual Int_t MorePads();
76
77 virtual void Neighbours(Int_t iX, Int_t iY, Int_t* Nlist,
78 Int_t Xlist[10], Int_t Ylist[10]);
79 virtual void NextPad();
80
81 virtual Int_t Npx() const;
82 virtual Int_t Npy() const;
83
84 void Print(Option_t* opt="") const;
85
86 virtual void SetDAnod(Float_t /*D*/);
87
88 virtual Int_t Sector(Int_t ix, Int_t iy);
89 virtual void SetHit(Float_t xhit, Float_t yhit);
90 virtual void SetHit(Float_t xhit, Float_t yhit, Float_t zhit);
91
92 virtual void SetPad(Int_t ix, Int_t iy);
93 virtual void SetPadSize(Float_t, Float_t);
94
95 virtual void GetNParallelAndOffset(Int_t /*iX*/, Int_t /*iY*/,
96 Int_t */*Nparallel*/, Int_t */*Offset*/);
97 virtual Int_t SigGenCond(Float_t /*x*/, Float_t /*y*/, Float_t /*z*/);
98 virtual void SigGenInit(Float_t /*x*/, Float_t /*y*/, Float_t /*z*/);
99 virtual void GiveTestPoints(Int_t &/*n*/, Float_t * /*x*/, Float_t */*y*/) const;
100 virtual void SetCorrFunc(Int_t /*dum*/, TF1* /*func*/);
101 virtual TF1* CorrFunc(Int_t) const;
102 virtual Int_t Sector(Float_t /*x*/, Float_t /*y*/);
103
104 protected:
105
106 AliMUONTriggerSegmentationV2(const AliMUONTriggerSegmentationV2& rhs);
107 AliMUONTriggerSegmentationV2& operator=(const AliMUONTriggerSegmentationV2& rhs);
108
109public:
110
111 void GetPadLoc2Glo(Int_t ixLoc, Int_t iyLoc, Int_t& ixGlo, Int_t& iyGlo) const;
112 void GetPadGlo2Loc(Int_t ixLoc, Int_t iyLoc, Int_t& ixGlo, Int_t& iyGlo) const;
113
114 void PC2LA(Int_t ixPC, Int_t iyPC, Int_t& ixLA, Int_t& iyLA);
115 void LA2PC(Int_t ixLA, Int_t iyLA, Int_t& ixPC, Int_t& iyPC);
116
117 void IGlo2ILoc(Int_t ixGlo, Int_t iyGlo, Int_t& ixLA, Int_t& iyLA);
118 void ILoc2IGlo(Int_t ixLA, Int_t iyLA, Int_t& ixGlo, Int_t& iyGlo);
119
120 Int_t ModuleColNum(Int_t ixGlo) const;
121
122private:
123 void ReadMappingData();
124
125private:
126 Int_t fDetElemId;
127 AliMpPlaneType fPlaneType;
128 const AliMpTrigger* fSlat; //!
129 AliMpTriggerSegmentation* fSlatSegmentation; //!
130// AliMpVPadIterator* fPadIterator; //!
131 AliMpPad fCurrentPad; //!FIXME: should not be needed, if we externalise the SetPad, SetHit, IntegrationLimits methods which have nothing to do here anyway, together with the iteration methods FirstPad, NextPad, MorePads, which have nothing to do here either.
132 Float_t fXhit; //!
133 Float_t fYhit; //!
134 Int_t fLineNumber; // Line number of that detection element (from 1 to 9)
135
136 ClassDef(AliMUONTriggerSegmentationV2,1)
137};
138#endif
139
140
141
142
143
144