]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDrecoParam.cxx
A new method DrawPMDModule is added
[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()
0906e73e 36 ,fkClusterSharing(0)
4ba1d6ae 37 ,fkPIDMethod(kLQPID) // LQ PID
e4f2f73d 38 ,fkMaxTheta(1.0)
39 ,fkMaxPhi(2.0)
40 ,fkRoad0y(6.0)
41 ,fkRoad0z(8.5)
42 ,fkRoad1y(2.0)
43 ,fkRoad1z(20.0)
44 ,fkRoad2y(3.0)
45 ,fkRoad2z(20.0)
46 ,fkPlaneQualityThreshold(5.0)// 4.2? under Investigation
47 ,fkFindable(.333)
eb38ed55 48 ,fkChi2Z(30./*14.*//*12.5*/)
e4f2f73d 49 ,fkChi2Y(.25)
50 ,fkTrackLikelihood(-15.)
d20df6fc 51 ,fkStreamLevel(0)
52 ,fSeedingOn(kFALSE)
53 ,fVertexConstrained(kTRUE)
df83a620 54 ,fMinMaxCutSigma(4.)
55 ,fMinLeftRightCutSigma(8.)
fc546d21 56 ,fClusMaxThresh(4.5)
57 ,fClusSigThresh(3.5)
58 ,fLUTOn(kTRUE)
59 ,fTCOn(kTRUE)
60 ,fTCnexp(1)
0e09df31 61 ,fADCbaseline(0)
e4f2f73d 62{
63 //
64 // Default constructor
65 //
66
67}
68
69//______________________________________________________________
70AliTRDrecoParam *AliTRDrecoParam::GetLowFluxParam()
71{
72 //
73 // Parameters for the low flux environment
74 //
75
76 return new AliTRDrecoParam();
77
78}
79
80//______________________________________________________________
81AliTRDrecoParam *AliTRDrecoParam::GetHighFluxParam()
82{
83 //
84 // Parameters for the high flux environment
85 //
86
87 return new AliTRDrecoParam();
88
89}
9716329b 90
91//______________________________________________________________
92AliTRDrecoParam *AliTRDrecoParam::GetCosmicTestParam()
93{
94 //
95 // Parameters for the cosmics data
96 //
97
98 AliTRDrawStreamBase::SetRawStreamVersion("TB");
99 AliTRDrecoParam *par = new AliTRDrecoParam();
0e09df31 100 par->SetADCbaseline(10);
d20df6fc 101 par->SetSeedingOn(kTRUE);
102 par->SetVertexConstrained(kTRUE);
9716329b 103 return par;
104
105}