]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpSectorPosition.cxx
New MUON Data container and MUON loader
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSectorPosition.cxx
1 // $Id$
2 // Category: plane
3 //
4 // Class AliMpSectorPosition
5 // -------------------------
6 // Class that represents a placed sector.
7 // Only translation + reflection transformations can
8 // be applied.
9 //
10 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
11
12 #include "AliMpSectorPosition.h"
13
14 ClassImp(AliMpSectorPosition)
15
16 //______________________________________________________________________________
17 AliMpSectorPosition::AliMpSectorPosition(const AliMpSector* sector,
18                                          const TVector2& offset, 
19                                          const AliMpIntPair& scale) 
20   : TObject(),
21     fkSector(sector),
22     fOffset(offset),
23     fScale(scale)
24 {
25 //
26 }
27
28 //_____________________________________________________________________________
29 AliMpSectorPosition::AliMpSectorPosition() 
30   : TObject(),
31     fkSector(),
32     fOffset(),
33     fScale()
34 {
35 //
36 }
37
38 //_____________________________________________________________________________
39 AliMpSectorPosition::~AliMpSectorPosition() {
40 // 
41 }