]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/UPGRADE/AliITSURecoParam.cxx
clusterizer,reconstructor + many fixes (Magnus,Stefan)
[u/mrichter/AliRoot.git] / ITS / UPGRADE / AliITSURecoParam.cxx
1 /**************************************************************************
2  * Copyright(c) 2007-2009, 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 #include "AliITSURecoParam.h"
17 #include "AliLog.h"
18
19
20 ///////////////////////////////////////////////////////////////////////////////
21 //                                                                           //
22 // Class with ITS reconstruction parameters                                  //
23 //                                                                           //
24 ///////////////////////////////////////////////////////////////////////////////
25
26
27
28 ClassImp(AliITSURecoParam)
29
30
31 //_____________________________________________________________________________
32 AliITSURecoParam::AliITSURecoParam()
33 {
34   // def c-tor
35   SetName("ITS");
36   SetTitle("ITS");
37 }
38
39 //_____________________________________________________________________________
40 AliITSURecoParam::~AliITSURecoParam() 
41 {
42   // destructor
43 }
44
45 //_____________________________________________________________________________
46 AliITSURecoParam *AliITSURecoParam::GetHighFluxParam() 
47 {
48   // make default reconstruction  parameters for hig  flux env.
49   AliITSURecoParam *param = new AliITSURecoParam(); 
50   //
51   // put here params
52   return param;
53 }
54
55 //_____________________________________________________________________________
56 AliITSURecoParam *AliITSURecoParam::GetLowFluxParam() 
57 {
58   // make default reconstruction  parameters for low  flux env.
59   AliITSURecoParam *param = new AliITSURecoParam();
60   // put here params
61   return param;
62 }
63
64 //_____________________________________________________________________________
65 AliITSURecoParam *AliITSURecoParam::GetCosmicTestParam() 
66 {
67   // make default reconstruction  parameters for cosmics
68   AliITSURecoParam *param = new AliITSURecoParam();
69   // put here params
70   return param;
71 }
72