]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONSt1SpecialMotif.h
Extracting PHOS and EMCAL trackers from the correspondig reconstructors (Yu.Belikov)
[u/mrichter/AliRoot.git] / MUON / AliMUONSt1SpecialMotif.h
1 #ifndef ALI_MUON_ST1_SPECIAL_MOTIF_H
2 #define ALI_MUON_ST1_SPECIAL_MOTIF_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 // Revision of includes 07/05/2004
8
9 // Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
10 //
11 // Class AliMUONSt1SpecialMotif
12 // ----------------------------
13 // Encapsulate the distance between the center of a given daughter card
14 // and the pad/kapton connector.
15
16 #include <TVector2.h>
17
18 class AliMUONSt1SpecialMotif  
19 {
20   public:
21     AliMUONSt1SpecialMotif();
22     AliMUONSt1SpecialMotif(const TVector2& delta,Double_t rotAngle=0.);
23     AliMUONSt1SpecialMotif(const AliMUONSt1SpecialMotif& src);
24     virtual ~AliMUONSt1SpecialMotif();
25     
26     TVector2 GetDelta()    const {return fDelta;}
27     Double_t GetRotAngle() const {return fRotAngle;}
28
29   private:
30     TVector2  fDelta;   // offset of this motif
31     Double_t  fRotAngle;// rotation angle in degrees (0° = vertical) 
32 };
33
34 #endif //ALI_MUON_ST1_SPECIAL_MOTIF_H