]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDrecoParam.cxx
remove bad modules BEFORE cleaning digits
[u/mrichter/AliRoot.git] / TRD / AliTRDrecoParam.cxx
CommitLineData
e4f2f73d 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
30ClassImp(AliTRDrecoParam)
31
32//______________________________________________________________
33AliTRDrecoParam::AliTRDrecoParam()
34 :AliDetectorRecoParam()
0906e73e 35 ,fkClusterSharing(0)
36 ,fkPIDMethod(1) // LQ PID
e4f2f73d 37 ,fkMaxTheta(1.0)
38 ,fkMaxPhi(2.0)
39 ,fkRoad0y(6.0)
40 ,fkRoad0z(8.5)
41 ,fkRoad1y(2.0)
42 ,fkRoad1z(20.0)
43 ,fkRoad2y(3.0)
44 ,fkRoad2z(20.0)
45 ,fkPlaneQualityThreshold(5.0)// 4.2? under Investigation
46 ,fkFindable(.333)
47 ,fkChi2Z(14./*12.5*/)
48 ,fkChi2Y(.25)
49 ,fkTrackLikelihood(-15.)
50{
51 //
52 // Default constructor
53 //
54
55}
56
57//______________________________________________________________
58AliTRDrecoParam *AliTRDrecoParam::GetLowFluxParam()
59{
60 //
61 // Parameters for the low flux environment
62 //
63
64 return new AliTRDrecoParam();
65
66}
67
68//______________________________________________________________
69AliTRDrecoParam *AliTRDrecoParam::GetHighFluxParam()
70{
71 //
72 // Parameters for the high flux environment
73 //
74
75 return new AliTRDrecoParam();
76
77}