]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - T0/AliT0Calibrator.cxx
Removing hardwired scaling factors, corresponding corrections in the calibration...
[u/mrichter/AliRoot.git] / T0 / AliT0Calibrator.cxx
... / ...
CommitLineData
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 * this class doing calibration during reconstruction
19 * 2 steps:
20 * - equalizing channels
21 * - applying walk corrections
22 *
23 * Alla.Maevskaya@cern.ch
24 *
25 **********************************************************************/
26
27//#include <Riostream.h>
28
29#include "AliLog.h"
30#include "AliT0Parameters.h"
31#include "AliT0Calibrator.h"
32//#include <TArrayI.h>
33#include <TGraph.h>
34#include <TH1F.h>
35
36ClassImp(AliT0Calibrator)
37
38//____________________________________________________________________
39 AliT0Calibrator::AliT0Calibrator():TNamed(),
40 fChannelWidth(0),
41 fWalk(0)
42{
43 //constructor
44
45 AliT0Parameters* param = AliT0Parameters::Instance();
46 param->Init();
47
48 fChannelWidth = param->GetChannelWidth() ;
49
50 for (Int_t i=0; i<24; i++){
51 fTimeDelayCFD[i] = Int_t (param->GetTimeDelayCFD(i));
52 TGraph* fu = param ->GetWalk(i);
53 fWalk.AddAtAndExpand(fu,i);
54
55 }
56
57 //
58}
59//_____________________________________________________________________________
60
61AliT0Calibrator::AliT0Calibrator(const AliT0Calibrator &r): TNamed(),
62 fChannelWidth(0),
63 fWalk(0)
64
65{
66 //
67 // AliT0calibartor copy constructor
68 //
69
70 ((AliT0Calibrator &) r).Copy(*this);
71
72}
73
74//_____________________________________________________________________________
75AliT0Calibrator &AliT0Calibrator::operator=(const AliT0Calibrator &r)
76{
77 //
78 // Assignment operator
79 //
80
81 if (this != &r) ((AliT0Calibrator &) r).Copy(*this);
82 return *this;
83
84}
85
86
87
88//____________________________________________________________________
89Int_t AliT0Calibrator::WalkCorrection(Int_t ipmt, Int_t qt, Int_t time)
90{
91 //slewing correcion and equalizing channels
92
93 Int_t timeEq=0, timeWalk=0;
94 TGraph *fu1=(TGraph*) fWalk.At(ipmt);
95 Float_t walk=fu1->Eval(Float_t(qt));
96 TH1F*hr=fu1->GetHistogram();
97 Float_t maxValue=hr->GetMaximum(50);
98 timeWalk = time + Int_t((maxValue-walk)/fChannelWidth) ;
99
100 timeEq= timeWalk - (fTimeDelayCFD[ipmt]-fTimeDelayCFD[0]);
101 AliDebug(10,Form(" time before %i timeWalk %i , qt %i timeEq %i \n ",
102 time,timeWalk, qt, timeEq ));
103 return timeEq;
104}
105
106
107