]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0CalibSeasonTimeShift.cxx
coveriry waring fixed
[u/mrichter/AliRoot.git] / T0 / AliT0CalibSeasonTimeShift.cxx
CommitLineData
455957bc 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: AliT0CalibSeasonTimeShift.cxx 42881 2010-08-16 10:59:14Z alla $ */
17
18///////////////////////////////////////////////////////////////////////////////
19// //
20// class for T0 calibration TM-AC-AM_6-02-2006
21// equalize time shift for each time CFD channel
22// //
23///////////////////////////////////////////////////////////////////////////////
24
25#include "AliT0CalibSeasonTimeShift.h"
26#include "AliLog.h"
27#include <TFile.h>
28#include <TMath.h>
29#include <TF1.h>
30#include <TProfile.h>
31#include <iostream>
32
33ClassImp(AliT0CalibSeasonTimeShift)
34
35//________________________________________________________________
36 AliT0CalibSeasonTimeShift::AliT0CalibSeasonTimeShift():TNamed()
37{
38 //
39
40}
41
42//________________________________________________________________
43AliT0CalibSeasonTimeShift::AliT0CalibSeasonTimeShift(const char* name):TNamed()
44{
45 //constructor
46
47 TString namst = "Calib_";
48 namst += name;
49 SetName(namst.Data());
50 SetTitle(namst.Data());
51}
52
53//________________________________________________________________
54AliT0CalibSeasonTimeShift::AliT0CalibSeasonTimeShift(const AliT0CalibSeasonTimeShift& calibda):TNamed(calibda)
55
56{
57// copy constructor
58 SetName(calibda.GetName());
59 SetTitle(calibda.GetName());
60
61
62}
63
64//________________________________________________________________
65AliT0CalibSeasonTimeShift &AliT0CalibSeasonTimeShift::operator =(const AliT0CalibSeasonTimeShift& calibda)
66{
67// assignment operator
68 SetName(calibda.GetName());
69 SetTitle(calibda.GetName());
70
71 return *this;
72}
73
74//________________________________________________________________
75AliT0CalibSeasonTimeShift::~AliT0CalibSeasonTimeShift()
76{
77 //
78 // destrictor
79}
80
81
82//________________________________________________________________
83void AliT0CalibSeasonTimeShift::Print(Option_t*) const
84{
85 // print time values
86
87 printf("\n ---- T0 results ----\n\n");
88 printf(" (T0A+T0C)/2 = %f; T0A = %f; T0C = %f; resolution = %f \n", fMeanPar[0], fMeanPar[1],fMeanPar[2],fMeanPar[3]);
89 printf(" sigma(T0A+T0C)/2 = %f; sigma(T0 = %f; sigma(T0C) = %f; sigma(resolution) = %f \n" , fSigmaPar[0], fSigmaPar[1], fSigmaPar[2],fSigmaPar[3]);
90
91}
92
93//________________________________________________________________
cd8ca88e 94Bool_t AliT0CalibSeasonTimeShift::SetT0Par(Float_t par[4],Float_t spar[4])
455957bc 95{
cd8ca88e 96 Bool_t ok=false;
97 for (Int_t i=0; i<4; i++)
455957bc 98 {
99 fMeanPar[i] = par[i];
100 fSigmaPar[i] = spar[i];
cd8ca88e 101 if ( fSigmaPar[i] == 0 || fSigmaPar[i] > 500) ok = false;
455957bc 102 }
cd8ca88e 103 return ok;
455957bc 104}
105
106//________________________________________________________________
cd8ca88e 107Bool_t AliT0CalibSeasonTimeShift::SetT0Par(const char* filePhys)
455957bc 108{
cd8ca88e 109 // compute online equalized time
110 Float_t mean, sigma;
111 Bool_t ok=false;
455957bc 112
113 gFile = TFile::Open(filePhys);
114 if(!gFile) {
115 AliError("No input PHYS data found ");
116 }
117 else
118 {
119 gFile->ls();
cd8ca88e 120 TDirectory *dr = (TDirectory*) gFile->Get("T0Calib");
121 // dr->Dump();
122 TObjArray * TzeroObj = (TObjArray*) dr->Get("fTzeroObject");
123 TString histname[4]={"fTzeroORAplusORC", "fTzeroORA", "fTzeroORC", "fResolution"};
124 for (Int_t i=0; i<4; i++)
455957bc 125 {
cd8ca88e 126 TH1F *cfd = (TH1F*)TzeroObj->FindObject( histname[i].Data());
127 gFile->Get(histname[i].Data());
455957bc 128 if(!cfd) AliWarning(Form("no histograms collected for %s", histname[i].Data()));
129 if(cfd) {
cd8ca88e 130 GetMeanAndSigma(cfd, mean, sigma);
131 if (sigma == 0 || sigma > 500) ok = false;
132 else
133 {
134 fMeanPar[i] = mean;
135 fSigmaPar[i] = sigma;
136 ok=true;
137 }
455957bc 138 }
139 }
cd8ca88e 140
141 gFile->Close();
142 delete gFile;
143
455957bc 144 }
cd8ca88e 145 return ok;
146}
147//________________________________________________________________________
148void AliT0CalibSeasonTimeShift::GetMeanAndSigma(TH1F* hist, Float_t &mean, Float_t &sigma) {
149
150 const double window = 5.; //fit window
151
152 double meanEstimate, sigmaEstimate;
153 int maxBin;
154 maxBin = hist->GetMaximumBin(); //position of maximum
155 meanEstimate = hist->GetBinCenter( maxBin); // mean of gaussian sitting in maximum
156 sigmaEstimate = hist->GetRMS();
157 TF1* fit= new TF1("fit","gaus", meanEstimate - window*sigmaEstimate, meanEstimate + window*sigmaEstimate);
158 fit->SetParameters(hist->GetBinContent(maxBin), meanEstimate, sigmaEstimate);
159 hist->Fit("fit","R");
160
161 mean = (Float_t) fit->GetParameter(1);
162 sigma = (Float_t) fit->GetParameter(2);
163
164 delete fit;
455957bc 165}