]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDrecoParam.cxx
Bug fix : propagating the change of ownership in the Registry
[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)
eb38ed55 47 ,fkChi2Z(30./*14.*//*12.5*/)
e4f2f73d 48 ,fkChi2Y(.25)
49 ,fkTrackLikelihood(-15.)
fc546d21 50 ,fClusMaxThresh(4.5)
51 ,fClusSigThresh(3.5)
52 ,fLUTOn(kTRUE)
53 ,fTCOn(kTRUE)
54 ,fTCnexp(1)
e4f2f73d 55{
56 //
57 // Default constructor
58 //
59
60}
61
62//______________________________________________________________
63AliTRDrecoParam *AliTRDrecoParam::GetLowFluxParam()
64{
65 //
66 // Parameters for the low flux environment
67 //
68
69 return new AliTRDrecoParam();
70
71}
72
73//______________________________________________________________
74AliTRDrecoParam *AliTRDrecoParam::GetHighFluxParam()
75{
76 //
77 // Parameters for the high flux environment
78 //
79
80 return new AliTRDrecoParam();
81
82}