]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpConstants.cxx
- Adding comment lines to class description needed for Root documentation
[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$
13985652 17// $MpId: AliMpConstants.cxx,v 1.11 2006/05/24 13:58:29 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
13985652 31/// \cond CLASSIMP
32ClassImp(AliMpConstants)
33/// \endcond
34
5f91c9e8 35// static data
d08b9187 36const Double_t AliMpConstants::fgkLengthTolerance = 1e-05; // 0.1 mum
37const Double_t AliMpConstants::fgkLengthStep = 0.1; // 1 mm
5f91c9e8 38const Int_t AliMpConstants::fgkStartPadIndex = 1;
6ebccce6 39const Int_t AliMpConstants::fgkNofCathodes = 2;
185ce53f 40const Int_t AliMpConstants::fgkNofChambers = 14;
6061eac6 41const Int_t AliMpConstants::fgkNofTrackingChambers = 10;
185ce53f 42const Int_t AliMpConstants::fgkNofGeomModules = 20;
fa09302e 43const Int_t AliMpConstants::fgkNofLocalBoards = 234;
35a22829 44const Int_t AliMpConstants::fgkNonBendingManuMask(1<<10);
45const Int_t AliMpConstants::fgkManuNofChannels(64);
46const Int_t AliMpConstants::fgkLocalBoardNofChannels(16);
d08b9187 47
5f91c9e8 48//_____________________________________________________________________________
49AliMpConstants::AliMpConstants()
dee1d5f1 50 : TObject()
51{
52/// Default constructor
5f91c9e8 53}
54
55//_____________________________________________________________________________
dee1d5f1 56AliMpConstants::~AliMpConstants()
57{
58///Destructor
5f91c9e8 59}
60
61//_____________________________________________________________________________
62Bool_t AliMpConstants::IsEqual(Double_t length1, Double_t length2)
63{
dee1d5f1 64/// Compare lengths within the length tolerance.
5f91c9e8 65
66 return TMath::Abs(length1 - length2) < fgkLengthTolerance;
67}
68
69
70//_____________________________________________________________________________
71Bool_t AliMpConstants::IsEqual(const TVector2& v1, const TVector2& v2)
72{
dee1d5f1 73/// Compare x, y vector coordinates within the length tolerance.
5f91c9e8 74
75 return ( TMath::Abs(v1.X() - v2.X())
76 + TMath::Abs(v1.Y() - v2.Y())) < 2.*fgkLengthTolerance;
77}
d08b9187 78
79//_____________________________________________________________________________
fa09302e 80Int_t AliMpConstants::ManuMask(AliMp::PlaneType planeType)
d08b9187 81{
f5671fc3 82/// The manuIDs get an offset if they are in the non-bending plane
83
cddd101e 84 return ( planeType == AliMp::kNonBendingPlane ) ? fgkNonBendingManuMask : 0;
d08b9187 85}
fa09302e 86
87//_____________________________________________________________________________
88Int_t AliMpConstants::NofTriggerChambers()
89{
90/// Return number of trigger chambers
91
92 return fgkNofChambers - fgkNofTrackingChambers;
93}