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 */
7 // Revision of includes 07/05/2004
10 /// \class AliMUONSt1SpecialMotif
11 /// \brief Helper class to encapsulate the distance between the daughter card
12 /// and the pad/kapton connector
14 /// Encapsulate the distance between the center of a given daughter card
15 /// and the pad/kapton connector.
17 /// Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
21 class AliMUONSt1SpecialMotif
24 AliMUONSt1SpecialMotif();
25 AliMUONSt1SpecialMotif(const TVector2& delta,Double_t rotAngle=0.);
26 AliMUONSt1SpecialMotif(const AliMUONSt1SpecialMotif& src);
27 virtual ~AliMUONSt1SpecialMotif();
30 TVector2 GetDelta() const {return fDelta;}
32 /// Return rotation angle in degrees (0 = vertical)
33 Double_t GetRotAngle() const {return fRotAngle;}
36 TVector2 fDelta; ///< offset of this motif
37 Double_t fRotAngle;///< rotation angle in degrees (0 = vertical)
40 #endif //ALI_MUON_ST1_SPECIAL_MOTIF_H