]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/AliMFTConstants.cxx
MFT Classes modified for integration with the AOD framework
[u/mrichter/AliRoot.git] / MFT / AliMFTConstants.cxx
CommitLineData
d4643a10 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//====================================================================================================================================================
17//
18// Constants for the Muon Forward Tracker
19//
20// Contact author: antonio.uras@cern.ch
21//
22//====================================================================================================================================================
23
24#include "TClass.h"
25#include "AliMFTConstants.h"
26
27ClassImp(AliMFTConstants)
28
29const Double_t AliMFTConstants::fCutForAvailableDigits = 5.;
30const Double_t AliMFTConstants::fCutForAttachingDigits = 1.;
31
32const Double_t AliMFTConstants::fElossPerElectron = 3.62e-09;
33
58b93f36 34const Double_t AliMFTConstants::fRadiusMin = 2.5;
d4643a10 35
36const Double_t AliMFTConstants::fActiveSuperposition = 0.05;
37
38const Double_t AliMFTConstants::fHeightActive = 0.5;
39const Double_t AliMFTConstants::fHeightReadout = 0.3;
40
41const Double_t AliMFTConstants::fSupportExtMargin = fHeightReadout + 0.3;
42
43const Double_t AliMFTConstants::fRadLengthSi = 9.37;
44
19baa2e3 45const Double_t AliMFTConstants::fWidthChip = 1.0;
46
a2b7dc2a 47const Double_t AliMFTConstants::fPrecisionPointOfClosestApproach = 10.e-4; // 10 micron
48
65273893 49const Double_t AliMFTConstants::fZEvalKinem = 0.;
50
51const Double_t AliMFTConstants::fXVertexTolerance = 500.e-4; // 500 micron
52const Double_t AliMFTConstants::fYVertexTolerance = 500.e-4; // 500 micron
53
54const Double_t AliMFTConstants::fPrimaryVertexResX = 5.e-4; // 5 micron
55const Double_t AliMFTConstants::fPrimaryVertexResY = 5.e-4; // 5 micron
56const Double_t AliMFTConstants::fPrimaryVertexResZ = 5.e-4; // 5 micron
57
58const Double_t AliMFTConstants::fMisalignmentMagnitude = 15.e-4; // 15 micron
59
d4643a10 60//====================================================================================================================================================