]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpSlatSegmentation.h
39f6f9f0b824cf97328b56060b2af149db71bceb
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSlatSegmentation.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 // $Id$
5 // $MpId: AliMpSlatSegmentation.h,v 1.12 2006/05/24 13:58:24 ivana Exp $
6
7 /// \ingroup slat
8 /// \class AliMpSlatSegmentation
9 /// \brief Implementation of AliMpVSegmentation for St345 slats.
10 /// 
11 /// Note that integer indices start at (0,0) on the bottom-left of the slat,
12 /// while floating point positions are relative to the center of the slat
13 /// (where the slat is to be understood as N PCBs of fixed size = 40cm
14 /// even if not all pads of a given PCBs are actually physically there).
15 ///
16 /// \author Laurent Aphecetche
17
18 #ifndef ALI_MP_SLAT_SEGMENTATION_H
19 #define ALI_MP_SLAT_SEGMENTATION_H
20
21 #ifndef ROOT_TString
22 #include "TString.h"
23 #endif
24
25 #ifndef ALI_MP_V_SEGMENTATION_H
26 #include "AliMpVSegmentation.h"
27 #endif
28
29 #ifndef ALI_MP_PAD_H
30 #include "AliMpPad.h"
31 #endif
32
33 class AliMpMotifPosition;
34 class AliMpPCB;
35 class AliMpSlat;
36
37 class AliMpSlatSegmentation : public AliMpVSegmentation
38 {
39  public:
40   AliMpSlatSegmentation();
41   AliMpSlatSegmentation(const AliMpSlat* slat, Bool_t own = false);
42   virtual ~AliMpSlatSegmentation();
43
44   virtual AliMpVPadIterator* CreateIterator(const AliMpArea& area) const;
45   virtual AliMpVPadIterator* CreateIterator() const;
46
47   virtual Int_t GetNeighbours(const AliMpPad& pad, TObjArray& neighbours,
48                               Bool_t includeSelf=kFALSE,
49                               Bool_t includeVoid=kFALSE) const;
50   
51   const char* GetName() const;
52   
53   Bool_t HasPad(const AliMpIntPair& indices) const;
54
55   Int_t MaxPadIndexX() const;
56   Int_t MaxPadIndexY() const;
57   Int_t NofPads() const;
58   
59   virtual AliMpPad PadByLocation(const AliMpIntPair& location, 
60                          Bool_t warning) const;
61
62   virtual AliMpPad PadByIndices(const AliMpIntPair& indices,  
63                         Bool_t warning) const;
64
65   virtual AliMpPad PadByPosition(const TVector2& position,
66                          Bool_t warning) const;
67
68   virtual void Print(Option_t* opt) const;
69   
70   const AliMpSlat* Slat() const;
71   
72   void GetAllElectronicCardIDs(TArrayI& ecn) const;
73   
74   virtual AliMp::PlaneType PlaneType() const;
75    
76   virtual AliMp::StationType StationType() const;
77   
78   TVector2 Dimensions() const;
79   
80  private:
81   /// Not implemented
82   AliMpSlatSegmentation(const AliMpSlatSegmentation& right);
83   /// Not implemented
84   AliMpSlatSegmentation&  operator = (const AliMpSlatSegmentation& right);
85
86   const AliMpSlat* fkSlat;  ///< Slat
87   Bool_t           fIsOwner;///< Slat ownership     
88
89   ClassDef(AliMpSlatSegmentation,2) // A slat for stations 3,4,5
90 };
91
92 /// Return station type
93 inline AliMp::StationType AliMpSlatSegmentation::StationType() const
94 { return AliMp::kStation345; }
95
96 #endif