]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpConstants.cxx
Work around for CINT bug in root 5.10/00, with gcc4.0.2
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpConstants.cxx
CommitLineData
dee1d5f1 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
5f91c9e8 16// $Id$
d08b9187 17// $MpId: AliMpConstants.cxx,v 1.9 2006/03/02 16:27:04 ivana Exp $
5f91c9e8 18// Category: basic
19//
20// Class AliMpConstants
21// --------------------
22// Class for globally used constants definition.
dbe945cc 23// Included in AliRoot: 2003/05/02
5f91c9e8 24// Authors: David Guez, Ivana Hrivnacova; IPN Orsay
25
5f91c9e8 26#include "AliMpConstants.h"
27
d08b9187 28#include <TMath.h>
29#include <TVector2.h>
5f91c9e8 30
31// static data
d08b9187 32const Double_t AliMpConstants::fgkLengthTolerance = 1e-05; // 0.1 mum
33const Double_t AliMpConstants::fgkLengthStep = 0.1; // 1 mm
5f91c9e8 34const Int_t AliMpConstants::fgkStartPadIndex = 1;
96f021b2 35const Int_t AliMpConstants::fgkNCh = 14;
e6dae1c4 36const Int_t AliMpConstants::fgkNonBendingManuMask(1<<10);
d08b9187 37
38ClassImp(AliMpConstants)
5f91c9e8 39
40//_____________________________________________________________________________
41AliMpConstants::AliMpConstants()
dee1d5f1 42 : TObject()
43{
44/// Default constructor
5f91c9e8 45}
46
47//_____________________________________________________________________________
dee1d5f1 48AliMpConstants::~AliMpConstants()
49{
50///Destructor
5f91c9e8 51}
52
53//_____________________________________________________________________________
54Bool_t AliMpConstants::IsEqual(Double_t length1, Double_t length2)
55{
dee1d5f1 56/// Compare lengths within the length tolerance.
5f91c9e8 57
58 return TMath::Abs(length1 - length2) < fgkLengthTolerance;
59}
60
61
62//_____________________________________________________________________________
63Bool_t AliMpConstants::IsEqual(const TVector2& v1, const TVector2& v2)
64{
dee1d5f1 65/// Compare x, y vector coordinates within the length tolerance.
5f91c9e8 66
67 return ( TMath::Abs(v1.X() - v2.X())
68 + TMath::Abs(v1.Y() - v2.Y())) < 2.*fgkLengthTolerance;
69}
d08b9187 70
71//_____________________________________________________________________________
72Int_t
73AliMpConstants::ManuMask(AliMpPlaneType planeType)
74{
75 //
76 // The manuIDs get an offset if they are in the non-bending plane
77 //
e6dae1c4 78 return ( planeType == kNonBendingPlane ) ? fgkNonBendingManuMask : 0;
d08b9187 79}