]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONSt1SpecialMotif.h
Further development on Mapping and Segmentation. Waiting for a critical review
[u/mrichter/AliRoot.git] / MUON / AliMUONSt1SpecialMotif.h
CommitLineData
ba030c0e 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$ */
30178c30 7// Revision of includes 07/05/2004
ba030c0e 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
18class 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