]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0RecoParam.cxx
new production request
[u/mrichter/AliRoot.git] / T0 / AliT0RecoParam.cxx
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
17 ///////////////////////////////////////////////////////////////////////////////
18 //                                                                           //
19 // Class with T0 reconstruction parameters                                  //
20 //    fMeanAmplitude -
21 //           for low flux time-amplitude correction equalize time to amplitude 1 MIP; 
22 //           for high flux - to 15MIP   
23 //    To have nice time spectra after reconstruction we need to know 
24 //    reference point to write t(i) - RefPoint. 
25 //    It can be apparatus RefPoint or one of PMT                       //  
26 //    fRefPoint - number of channel with RF
27 //
28 //       Alla.Maevskaya@cern.ch
29 /////////////////////////////////////////////////////////////////////////
30
31 #include "AliLog.h"
32  
33 #include "AliT0RecoParam.h"
34 #include "Riostream.h"
35
36 ClassImp(AliT0RecoParam)
37
38
39
40
41 //_____________________________________________________________________________
42 AliT0RecoParam::AliT0RecoParam():
43   AliDetectorRecoParam(),
44    fRefAmp(7),
45     fRefPoint(0)
46 {
47   //
48   // constructor
49   //
50   SetName("T0");
51   SetTitle("T0");
52 }
53
54 //_____________________________________________________________________________
55 AliT0RecoParam::~AliT0RecoParam() 
56 {
57   //
58   // destructor
59   //  
60 }
61
62 //_____________________________________________________________________________
63
64 AliT0RecoParam::AliT0RecoParam(const AliT0RecoParam &p):
65   AliDetectorRecoParam(p),       
66    fRefAmp(p.fRefAmp),
67    fRefPoint(p.fRefPoint)
68 {
69  
70  //copy constructor
71
72 }
73 //_____________________________________________________________________________
74
75 AliT0RecoParam& AliT0RecoParam:: operator=(const AliT0RecoParam &p)
76 {
77   //
78   // assign. operator
79   //
80
81   if (this == &p)
82     return *this;
83   
84   AliDetectorRecoParam::operator=(p);
85   fRefAmp = p.fRefAmp;
86   fRefPoint = p.fRefPoint;
87   return *this;
88
89 }
90 //_____________________________________________________________________________
91  
92 AliT0RecoParam *AliT0RecoParam::GetLowFluxParam()
93 {
94   //
95   // make default reconstruction  parameters for low  flux env.
96   //
97   AliT0RecoParam *param = new AliT0RecoParam();
98   param->fRefAmp = 1;
99   param->fRefPoint = 0;
100   param->SetName("Low Flux");
101   param->SetTitle("Low Flux");
102   return param;
103 }
104
105 //_____________________________________________________________________________
106
107 AliT0RecoParam *AliT0RecoParam::GetHighFluxParam()
108 {
109   //
110   // make reco parameters for high flux env.
111   //
112
113   AliT0RecoParam *param = new AliT0RecoParam();
114   param->fRefAmp = 5;
115   param->fRefPoint = 0;
116   //
117   param->SetName("High Flux");
118   param->SetTitle("High Flux");
119   return param;
120 }
121
122
123 //_____________________________________________________________________________
124
125 AliT0RecoParam *AliT0RecoParam::GetLaserTestParam()
126 {
127   //
128   // special setting for laser
129   //
130   AliT0RecoParam *param = new AliT0RecoParam();
131   param->fRefAmp = 1;
132   param->fRefPoint = 1;
133   //
134   param->SetName("Laser Flux");
135   param->SetTitle("Laser Flux");
136   return param;
137 }
138 //_____________________________________________________________________________
139 void AliT0RecoParam::PrintParameters() const
140 {
141   //
142   // Printing of the used T0 reconstruction parameters
143   //
144   AliInfo(Form(" Reference amplitude for walk corerection : %f", fRefAmp));
145   AliInfo(Form(" Reference point in channel  : %i", fRefPoint));
146  
147 }