]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDrecoParam.cxx
Update of reco param by Alex
[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"
9716329b 29#include "AliTRDrawStreamBase.h"
e4f2f73d 30
31ClassImp(AliTRDrecoParam)
32
33//______________________________________________________________
34AliTRDrecoParam::AliTRDrecoParam()
35 :AliDetectorRecoParam()
36 ,fkMaxTheta(1.0)
37 ,fkMaxPhi(2.0)
38 ,fkRoad0y(6.0)
39 ,fkRoad0z(8.5)
40 ,fkRoad1y(2.0)
41 ,fkRoad1z(20.0)
42 ,fkRoad2y(3.0)
43 ,fkRoad2z(20.0)
44 ,fkPlaneQualityThreshold(5.0)// 4.2? under Investigation
45 ,fkFindable(.333)
eb38ed55 46 ,fkChi2Z(30./*14.*//*12.5*/)
e4f2f73d 47 ,fkChi2Y(.25)
48 ,fkTrackLikelihood(-15.)
df83a620 49 ,fMinMaxCutSigma(4.)
50 ,fMinLeftRightCutSigma(8.)
fc546d21 51 ,fClusMaxThresh(4.5)
52 ,fClusSigThresh(3.5)
fc546d21 53 ,fTCnexp(1)
4e459a9d 54 ,fNumberOfPresamples(0)
55 ,fNumberOfPostsamples(0)
e4f2f73d 56{
57 //
58 // Default constructor
59 //
a7ac01d2 60 SetClusterSharing(kFALSE);
a7ac01d2 61 SetVertexConstrained();
62 SetLUT();
63 SetTailCancelation();
3a039a31 64
3afdab72 65 fSysCovMatrix[0] = 1.; // y direction (1 cm)
66 fSysCovMatrix[1] = 1.; // z direction (1 cm)
67 fSysCovMatrix[2] = 0.; // snp
68 fSysCovMatrix[3] = 0.; // tgl
69 fSysCovMatrix[4] = 0.; // 1/pt
e4f2f73d 70}
71
a7ac01d2 72//______________________________________________________________
73AliTRDrecoParam::AliTRDrecoParam(const AliTRDrecoParam &ref)
74 :AliDetectorRecoParam(ref)
a7ac01d2 75 ,fkMaxTheta(ref.fkMaxTheta)
76 ,fkMaxPhi(ref.fkMaxPhi)
77 ,fkRoad0y(ref.fkRoad0y)
78 ,fkRoad0z(ref.fkRoad0z)
79 ,fkRoad1y(ref.fkRoad1y)
80 ,fkRoad1z(ref.fkRoad1z)
81 ,fkRoad2y(ref.fkRoad2y)
82 ,fkRoad2z(ref.fkRoad2z)
83 ,fkPlaneQualityThreshold(ref.fkPlaneQualityThreshold)
84 ,fkFindable(ref.fkFindable)
85 ,fkChi2Z(ref.fkChi2Z)
86 ,fkChi2Y(ref.fkChi2Y)
87 ,fkTrackLikelihood(ref.fkTrackLikelihood)
a7ac01d2 88 ,fMinMaxCutSigma(ref.fMinMaxCutSigma)
89 ,fMinLeftRightCutSigma(ref.fMinLeftRightCutSigma)
90 ,fClusMaxThresh(ref.fClusMaxThresh)
91 ,fClusSigThresh(ref.fClusSigThresh)
92 ,fTCnexp(ref.fTCnexp)
4e459a9d 93 ,fNumberOfPresamples(ref.fNumberOfPresamples)
94 ,fNumberOfPostsamples(ref.fNumberOfPostsamples)
a7ac01d2 95{
96 //
97 // Copy constructor
98 //
99 SetClusterSharing(ref.IsClusterSharing());
a7ac01d2 100 SetVertexConstrained(ref.IsVertexConstrained());
101 SetLUT(ref.IsLUT());
102 SetTailCancelation(ref.IsTailCancelation());
103
104 memcpy(fSysCovMatrix, ref.fSysCovMatrix, 5*sizeof(Double_t));
105}
106
e4f2f73d 107//______________________________________________________________
108AliTRDrecoParam *AliTRDrecoParam::GetLowFluxParam()
109{
110 //
111 // Parameters for the low flux environment
112 //
113
114 return new AliTRDrecoParam();
115
116}
117
118//______________________________________________________________
119AliTRDrecoParam *AliTRDrecoParam::GetHighFluxParam()
120{
121 //
122 // Parameters for the high flux environment
123 //
124
125 return new AliTRDrecoParam();
126
127}
9716329b 128
129//______________________________________________________________
130AliTRDrecoParam *AliTRDrecoParam::GetCosmicTestParam()
131{
132 //
133 // Parameters for the cosmics data
134 //
135
136 AliTRDrawStreamBase::SetRawStreamVersion("TB");
137 AliTRDrecoParam *par = new AliTRDrecoParam();
a7ac01d2 138 par->SetVertexConstrained();
9716329b 139 return par;
140
141}