]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDrecoParam.cxx
New stand alone tracking by Alexadru and Martin
[u/mrichter/AliRoot.git] / TRD / AliTRDrecoParam.cxx
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 /* $Id$ */
17
18 ///////////////////////////////////////////////////////////////////////////////
19 //                                                                           //
20 //  Parameter class for the TRD reconstruction                               //
21 //                                                                           //
22 //  Authors:                                                                 //
23 //    Alex Bercuci <A.Bercuci@gsi.de>                                        //
24 //    Markus Fasel <M.Fasel@gsi.de>                                          //
25 //                                                                           //
26 ///////////////////////////////////////////////////////////////////////////////
27
28 #include "AliTRDrecoParam.h"
29
30 ClassImp(AliTRDrecoParam)
31
32 //______________________________________________________________
33 AliTRDrecoParam::AliTRDrecoParam()
34   :AliDetectorRecoParam()
35   ,fkMaxTheta(1.0)
36   ,fkMaxPhi(2.0)
37   ,fkRoad0y(6.0)
38   ,fkRoad0z(8.5) 
39   ,fkRoad1y(2.0)
40   ,fkRoad1z(20.0)       
41   ,fkRoad2y(3.0)
42   ,fkRoad2z(20.0)
43   ,fkPlaneQualityThreshold(5.0)// 4.2? under Investigation
44   ,fkFindable(.333)
45   ,fkChi2Z(14./*12.5*/)
46   ,fkChi2Y(.25)
47   ,fkTrackLikelihood(-15.)
48 {
49   //
50   // Default constructor
51   //
52
53 }
54
55 //______________________________________________________________
56 AliTRDrecoParam *AliTRDrecoParam::GetLowFluxParam()
57 {
58   //
59   // Parameters for the low flux environment
60   //
61
62   return new AliTRDrecoParam();
63
64 }
65
66 //______________________________________________________________
67 AliTRDrecoParam *AliTRDrecoParam::GetHighFluxParam()
68 {
69   //
70   // Parameters for the high flux environment
71   //
72
73   return new AliTRDrecoParam();
74
75 }