]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpVIndexed.cxx
Coding convention violations (RC17): suppression
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpVIndexed.cxx
index 9a7d6e5cf196b16f5d0eb279d39a196261b792af..4d2313b1650c598a72d802ec357cb1f938057a1a 100755 (executable)
+/**************************************************************************
+ * 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$
+// $MpId: AliMpVIndexed.cxx,v 1.7 2006/05/24 13:58:29 ivana Exp $
 // Category: basic
-//
+
+//-----------------------------------------------------------------------------
 // Class AliMpVIndexed
 // -------------------
 // Class that defines the limits of global pad indices.
 // Included in AliRoot: 2003/05/02
 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
+//-----------------------------------------------------------------------------
 
 #include "AliMpVIndexed.h"
 
+/// \cond CLASSIMP
 ClassImp(AliMpVIndexed)
+/// \endcond
 
 //_____________________________________________________________________________
-AliMpVIndexed::AliMpVIndexed(const AliMpIntPair& lowLimit, 
-                             const AliMpIntPair& highLimit)
+AliMpVIndexed::AliMpVIndexed()
   : TObject(),
-    fLowIndicesLimit(lowLimit),
-    fHighIndicesLimit(highLimit) {
-//
+    fLowLimit(0),
+    fHighLimit(0),
+    fLowValid(false),
+    fHighValid(false)
+{
+/// Default constructor
 }
 
 //_____________________________________________________________________________
-AliMpVIndexed::AliMpVIndexed()
-  : TObject(),
-    fLowIndicesLimit(AliMpIntPair::Invalid()),
-    fHighIndicesLimit(AliMpIntPair::Invalid()) {
-//
+AliMpVIndexed::~AliMpVIndexed()
+{
+/// Destructor 
 }
 
 //_____________________________________________________________________________
-AliMpVIndexed::~AliMpVIndexed(){
-// 
+MpPair_t AliMpVIndexed::GlobalIndices(MpPair_t localIndices) const
+{
+/// Return the global indices corresponding to the given local indices.
+
+  return fLowLimit + localIndices;
 }
 
+//_____________________________________________________________________________
+Int_t  AliMpVIndexed::GlobalIx(Int_t localIx) const
+{
+/// Return the global indices ix corresponding to the given local indices
+
+  return GetLowLimitIx() + localIx;
+}  
+
 
 //_____________________________________________________________________________
-AliMpIntPair AliMpVIndexed::GlobalIndices(const AliMpIntPair& localIndices) const
+Int_t  AliMpVIndexed::GlobalIy(Int_t localIy) const
 {
-// Returns the global indices corresponding to the given local indices.
-// ---
+/// Return the global indices iy corresponding to the given local indices
+
+  return GetLowLimitIy() + localIy;
+}  
+
+//_____________________________________________________________________________
+void AliMpVIndexed::SetLowIndicesLimit(MpPair_t limit, Bool_t valid)
+{ 
+/// Set low indices limit
+
+  fLowLimit = limit; 
+  fLowValid = valid ; 
+}
+  
+//_____________________________________________________________________________
+void AliMpVIndexed::SetLowIndicesLimit(Int_t ix, Int_t iy, Bool_t valid)
+{ 
+/// Set low indices limit
+
+  fLowLimit = AliMp::Pair(ix, iy); 
+  fLowValid = valid; 
+}
+  
+//_____________________________________________________________________________
+void AliMpVIndexed::SetHighIndicesLimit(MpPair_t limit, Bool_t valid)
+{ 
+/// Set high indices limit
 
-  return GetLowIndicesLimit()+localIndices;
+  fHighLimit = limit; 
+  fHighValid = valid ; 
+}
+  
+//_____________________________________________________________________________
+void AliMpVIndexed::SetHighIndicesLimit(Int_t ix, Int_t iy, Bool_t valid)
+{ 
+/// Set high indices limit
 
+  fHighLimit = AliMp::Pair(ix, iy); 
+  fHighValid = valid; 
 }
 
 //_____________________________________________________________________________
-Bool_t AliMpVIndexed::HasIndices(const AliMpIntPair& indices) const
+Bool_t AliMpVIndexed::HasIndices(MpPair_t indices) const
 {
-// Returns true in the specified indices are within the limits.
-// ---
+/// Return true in the specified indices are within the limits.
   
-  return (indices.GetFirst()  >= fLowIndicesLimit.GetFirst() && 
-          indices.GetSecond() >= fLowIndicesLimit.GetSecond() && 
-          indices.GetFirst()  <= fHighIndicesLimit.GetFirst() && 
-          indices.GetSecond() <= fHighIndicesLimit.GetSecond() );
+  return ( AliMp::PairFirst(indices)  >= GetLowLimitIx() && 
+           AliMp::PairSecond(indices) >= GetLowLimitIy() && 
+           AliMp::PairFirst(indices)  <= GetHighLimitIx() && 
+           AliMp::PairSecond(indices) <= GetHighLimitIy() );
+}  
+
+//_____________________________________________________________________________
+Bool_t AliMpVIndexed::HasIndices(Int_t ix, Int_t iy) const
+{
+/// Return true in the specified indices are within the limits.
+  
+  return (ix  >= GetLowLimitIx() && 
+          iy  >= GetLowLimitIy() && 
+          ix  <= GetHighLimitIx() && 
+          iy  <= GetHighLimitIy() );
 }  
 
 //_____________________________________________________________________________
 Bool_t AliMpVIndexed::HasValidIndices() const
 {
-// Returns true if both indices limits have valid values.
-// ---
+/// Returns true if both indices limits have valid values.
   
-  return (fLowIndicesLimit.IsValid() && fHighIndicesLimit.IsValid() );
+  return ( fLowValid && fHighValid );
 }         
 
+//_____________________________________________________________________________
+MpPair_t AliMpVIndexed::GetLowIndicesLimit() const
+{ 
+/// Return low indices limit
+
+  // if ( ! fLowValid )  return 0;
+
+  return fLowLimit; 
+}
+
+//_____________________________________________________________________________
+Int_t  AliMpVIndexed::GetLowLimitIx() const
+{ 
+/// Return low indices ix limit
+
+  // if ( ! fLowValid )  return 0;
+
+  return AliMp::PairFirst(fLowLimit); 
+}
+
+//_____________________________________________________________________________
+Int_t  AliMpVIndexed::GetLowLimitIy() const
+{ 
+/// Return low indices iy limit
+
+  // if ( ! fLowValid )  return 0;
+
+  return AliMp::PairSecond(fLowLimit); 
+}
+
+//_____________________________________________________________________________
+Bool_t AliMpVIndexed::IsLowLimitValid() const  
+{
+/// Return true, if low indices limit is set 
+
+  return fLowValid; 
+}
+
+//_____________________________________________________________________________
+MpPair_t AliMpVIndexed::GetHighIndicesLimit() const
+{ 
+/// Return high indices limit
+
+  // if ( ! fHighValid )  return 0;
+
+  return fHighLimit; 
+}
+
+//_____________________________________________________________________________
+Int_t  AliMpVIndexed::GetHighLimitIx() const
+{ 
+/// Return high indices ix limit
+
+  // if ( ! fHighValid )  return 0;
+
+  return AliMp::PairFirst(fHighLimit); 
+}
+
+//_____________________________________________________________________________
+Int_t  AliMpVIndexed::GetHighLimitIy() const
+{ 
+/// Return high indices iy limit
+
+  // if ( ! fHighValid )  return 0;
+
+  return AliMp::PairSecond(fHighLimit); 
+}
+
+//_____________________________________________________________________________
+Bool_t AliMpVIndexed::IsHighLimitValid() const  
+{
+/// Return true, if high indices limit is set 
+
+  return fHighValid; 
+}
+
+