]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONmapping/AliMpRowSegmentRSpecial.h
MUON + CheckCompiler
[u/mrichter/AliRoot.git] / MUON / MUONmapping / AliMpRowSegmentRSpecial.h
CommitLineData
dee1d5f1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
ea4cae7a 4// $Id$
13985652 5// $MpId: AliMpRowSegmentRSpecial.h,v 1.9 2006/05/24 13:58:21 ivana Exp $
dee1d5f1 6
7/// \ingroup sector
8/// \class AliMpRowSegmentRSpecial
9/// \brief A special outer row segment composed of the pad rows.
10///
13985652 11/// \author David Guez, Ivana Hrivnacova; IPN Orsay
ea4cae7a 12
13#ifndef ALI_MP_ROW_SEGMENT_R_SPECIAL_H
14#define ALI_MP_ROW_SEGMENT_R_SPECIAL_H
15
ea4cae7a 16#include "AliMpVRowSegmentSpecial.h"
17
18class AliMpRow;
19class AliMpPadRow;
20class AliMpVPadRowSegment;
ea4cae7a 21
22class AliMpRowSegmentRSpecial : public AliMpVRowSegmentSpecial
23{
24 public:
25 AliMpRowSegmentRSpecial(AliMpRow* row, Double_t offsetX);
26 AliMpRowSegmentRSpecial();
27 virtual ~AliMpRowSegmentRSpecial();
28
29 // methods
f5671fc3 30 /// Nothing to be done for outer segments
31 virtual void UpdatePadsOffset() {}
ea4cae7a 32 virtual Double_t LeftBorderX() const;
33 virtual Double_t RightBorderX() const;
34
35 // geometry
6e97fbb8 36 virtual Double_t GetPositionX() const;
37 virtual Double_t GetPositionY() const;
ea4cae7a 38
39 // set methods
580c28fd 40 virtual void SetGlobalIndices(AliMpRow* rowBefore);
168e9c4d 41 virtual Int_t SetIndicesToMotifPosition(Int_t i, MpPair_t indices);
ea4cae7a 42
43 protected:
44 // methods
6e97fbb8 45 virtual void MotifCenterSlow(Int_t motifPositionId,
46 Double_t& x, Double_t& y) const;
ea4cae7a 47
48 private:
49 // methods
50 AliMpVPadRowSegment* FindMostLeftPadRowSegment(Int_t motifPositionId) const;
51 void SetGlobalIndicesLow();
52
829425a5 53 ClassDef(AliMpRowSegmentRSpecial,1) // Row segment
ea4cae7a 54};
55
56#endif //ALI_MP_ROW_SEGMENT_R_SPECIAL_H