]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpPadPair.cxx
In SetNofManusPerModule(): return false if no action
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPadPair.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 // $Id$
17 // $MpId: AliMpPadPair.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $
18 // Category: basic
19 //
20 // Class AliMpPadPair
21 // ------------------
22 // Wrap up for std::pair<AliMpPad, AliMpPad>
23 // to avoid problems with CINT.
24 // Included in AliRoot: 2003/05/02
25 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
26
27 #include "AliMpPadPair.h"
28
29 /// \cond CLASSIMP
30 ClassImp(AliMpPadPair)
31 /// \endcond
32
33 //_____________________________________________________________________________
34 AliMpPadPair::AliMpPadPair(const AliMpPad& pad1, const AliMpPad& pad2)
35   : TObject(),
36     fPadFirst(pad1),
37     fPadSecond(pad2) 
38 {
39 /// Standard constructor
40 }
41
42 //_____________________________________________________________________________
43 AliMpPadPair::AliMpPadPair(const AliMpPadPair& right)
44   : TObject(),
45     fPadFirst(right.GetFirst()),
46     fPadSecond(right.GetSecond()) 
47 {
48 /// Copy constructor
49 }
50
51 //_____________________________________________________________________________
52 AliMpPadPair::AliMpPadPair()
53   : TObject(),
54     fPadFirst(AliMpPad::Invalid()),
55     fPadSecond(AliMpPad::Invalid()) 
56 {
57 /// Default constructor
58 }
59
60 //_____________________________________________________________________________
61 AliMpPadPair::~AliMpPadPair() 
62 {
63 /// Destructor
64 }
65
66 //_____________________________________________________________________________
67 Bool_t AliMpPadPair::operator == (const AliMpPadPair& right) const
68 {
69 /// Equality operator 
70
71   return (fPadFirst == right.fPadFirst && fPadSecond == right.fPadSecond);
72 }
73
74 //_____________________________________________________________________________
75 Bool_t AliMpPadPair::operator!= (const AliMpPadPair& right) const
76 {
77 /// Non-equality operator 
78
79   return !(*this == right);
80 }
81
82 //_____________________________________________________________________________
83 AliMpPadPair& AliMpPadPair::operator = (const AliMpPadPair& right) 
84 {
85 /// Assignment operator 
86
87   // check assignment to self
88   if (this == &right) return *this;
89
90   // base class assignment
91   TObject::operator=(right);
92
93   // assignment operator
94   fPadFirst = right.fPadFirst;
95   fPadSecond = right.fPadSecond;
96   
97   return *this;
98 }
99
100