]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MFT/AliMFTConstants.cxx
Update From Debojit
[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
d4643a10 34const Double_t AliMFTConstants::fActiveSuperposition = 0.05;
35
36const Double_t AliMFTConstants::fHeightActive = 0.5;
37const Double_t AliMFTConstants::fHeightReadout = 0.3;
38
39const Double_t AliMFTConstants::fSupportExtMargin = fHeightReadout + 0.3;
40
41const Double_t AliMFTConstants::fRadLengthSi = 9.37;
42
19baa2e3 43const Double_t AliMFTConstants::fWidthChip = 1.0;
44
a2b7dc2a 45const Double_t AliMFTConstants::fPrecisionPointOfClosestApproach = 10.e-4; // 10 micron
46
65273893 47const Double_t AliMFTConstants::fZEvalKinem = 0.;
48
49const Double_t AliMFTConstants::fXVertexTolerance = 500.e-4; // 500 micron
50const Double_t AliMFTConstants::fYVertexTolerance = 500.e-4; // 500 micron
51
52const Double_t AliMFTConstants::fPrimaryVertexResX = 5.e-4; // 5 micron
53const Double_t AliMFTConstants::fPrimaryVertexResY = 5.e-4; // 5 micron
54const Double_t AliMFTConstants::fPrimaryVertexResZ = 5.e-4; // 5 micron
55
56const Double_t AliMFTConstants::fMisalignmentMagnitude = 15.e-4; // 15 micron
57
d4643a10 58//====================================================================================================================================================