ROOT logo
/**************************************************************************
 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 *                                                                        *
 * Author: The ALICE Off-line Project.                                    *
 * Contributors are mentioned in the code where appropriate.              *
 *                                                                        *
 * Permission to use, copy, modify and distribute this software and its   *
 * documentation strictly for non-commercial purposes is hereby granted   *
 * without fee, provided that the above copyright notice appears in all   *
 * copies and that both the copyright notice and this permission notice   *
 * appear in the supporting documentation. The authors make no claims     *
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/

/* $Id$ */

//-----------------------------------------------------------------------------
// Class AliMUONSt1SpecialMotif
// ----------------------------
// Encapsulate the distance between the center of a given daughter card
// and the pad/kapton connector.
// Included in AliRoot 2003/01/28
// Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
//-----------------------------------------------------------------------------

#include "AliMUONSt1SpecialMotif.h"


//__________________________________________________________________________
AliMUONSt1SpecialMotif::AliMUONSt1SpecialMotif(const TVector2& delta, 
                                               Double_t rotAngle)
  :fDelta(delta),
   fRotAngle(rotAngle)
{
/// Standard constructor
}

//__________________________________________________________________________
AliMUONSt1SpecialMotif::AliMUONSt1SpecialMotif()
  :fDelta(TVector2(0.,0.)),
   fRotAngle(0.)
{
/// Default constructor
}

//__________________________________________________________________________
AliMUONSt1SpecialMotif::AliMUONSt1SpecialMotif(const AliMUONSt1SpecialMotif& src)
  :fDelta(src.fDelta),
   fRotAngle(src.fRotAngle)
  
{
/// Copy constructor
}

//__________________________________________________________________________
AliMUONSt1SpecialMotif::~AliMUONSt1SpecialMotif()
{
/// Destructor
}

//__________________________________________________________________________
AliMUONSt1SpecialMotif& AliMUONSt1SpecialMotif::operator=(const AliMUONSt1SpecialMotif& src)
{
/// Assignment operator

  // check assignment to self
  if (this == &src) return *this;

  fDelta = src.fDelta;
  fRotAngle = src.fRotAngle;

  return *this;
}  
 AliMUONSt1SpecialMotif.cxx:1
 AliMUONSt1SpecialMotif.cxx:2
 AliMUONSt1SpecialMotif.cxx:3
 AliMUONSt1SpecialMotif.cxx:4
 AliMUONSt1SpecialMotif.cxx:5
 AliMUONSt1SpecialMotif.cxx:6
 AliMUONSt1SpecialMotif.cxx:7
 AliMUONSt1SpecialMotif.cxx:8
 AliMUONSt1SpecialMotif.cxx:9
 AliMUONSt1SpecialMotif.cxx:10
 AliMUONSt1SpecialMotif.cxx:11
 AliMUONSt1SpecialMotif.cxx:12
 AliMUONSt1SpecialMotif.cxx:13
 AliMUONSt1SpecialMotif.cxx:14
 AliMUONSt1SpecialMotif.cxx:15
 AliMUONSt1SpecialMotif.cxx:16
 AliMUONSt1SpecialMotif.cxx:17
 AliMUONSt1SpecialMotif.cxx:18
 AliMUONSt1SpecialMotif.cxx:19
 AliMUONSt1SpecialMotif.cxx:20
 AliMUONSt1SpecialMotif.cxx:21
 AliMUONSt1SpecialMotif.cxx:22
 AliMUONSt1SpecialMotif.cxx:23
 AliMUONSt1SpecialMotif.cxx:24
 AliMUONSt1SpecialMotif.cxx:25
 AliMUONSt1SpecialMotif.cxx:26
 AliMUONSt1SpecialMotif.cxx:27
 AliMUONSt1SpecialMotif.cxx:28
 AliMUONSt1SpecialMotif.cxx:29
 AliMUONSt1SpecialMotif.cxx:30
 AliMUONSt1SpecialMotif.cxx:31
 AliMUONSt1SpecialMotif.cxx:32
 AliMUONSt1SpecialMotif.cxx:33
 AliMUONSt1SpecialMotif.cxx:34
 AliMUONSt1SpecialMotif.cxx:35
 AliMUONSt1SpecialMotif.cxx:36
 AliMUONSt1SpecialMotif.cxx:37
 AliMUONSt1SpecialMotif.cxx:38
 AliMUONSt1SpecialMotif.cxx:39
 AliMUONSt1SpecialMotif.cxx:40
 AliMUONSt1SpecialMotif.cxx:41
 AliMUONSt1SpecialMotif.cxx:42
 AliMUONSt1SpecialMotif.cxx:43
 AliMUONSt1SpecialMotif.cxx:44
 AliMUONSt1SpecialMotif.cxx:45
 AliMUONSt1SpecialMotif.cxx:46
 AliMUONSt1SpecialMotif.cxx:47
 AliMUONSt1SpecialMotif.cxx:48
 AliMUONSt1SpecialMotif.cxx:49
 AliMUONSt1SpecialMotif.cxx:50
 AliMUONSt1SpecialMotif.cxx:51
 AliMUONSt1SpecialMotif.cxx:52
 AliMUONSt1SpecialMotif.cxx:53
 AliMUONSt1SpecialMotif.cxx:54
 AliMUONSt1SpecialMotif.cxx:55
 AliMUONSt1SpecialMotif.cxx:56
 AliMUONSt1SpecialMotif.cxx:57
 AliMUONSt1SpecialMotif.cxx:58
 AliMUONSt1SpecialMotif.cxx:59
 AliMUONSt1SpecialMotif.cxx:60
 AliMUONSt1SpecialMotif.cxx:61
 AliMUONSt1SpecialMotif.cxx:62
 AliMUONSt1SpecialMotif.cxx:63
 AliMUONSt1SpecialMotif.cxx:64
 AliMUONSt1SpecialMotif.cxx:65
 AliMUONSt1SpecialMotif.cxx:66
 AliMUONSt1SpecialMotif.cxx:67
 AliMUONSt1SpecialMotif.cxx:68
 AliMUONSt1SpecialMotif.cxx:69
 AliMUONSt1SpecialMotif.cxx:70
 AliMUONSt1SpecialMotif.cxx:71
 AliMUONSt1SpecialMotif.cxx:72
 AliMUONSt1SpecialMotif.cxx:73
 AliMUONSt1SpecialMotif.cxx:74