]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0CalibSeasonTimeShift.cxx
Handle friend chain name in GetChainForTestMode
[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//________________________________________________________________
32d3e409 107Int_t AliT0CalibSeasonTimeShift::SetT0Par(const char* filePhys, Float_t *cdbtime)
455957bc 108{
cd8ca88e 109 // compute online equalized time
110 Float_t mean, sigma;
32d3e409 111 Int_t ok = 0;
bb54f817 112 TH1F *cfd = NULL;
61bd03f6 113 TObjArray * tzeroObj = NULL;
dd92f5b8 114
455957bc 115 gFile = TFile::Open(filePhys);
116 if(!gFile) {
117 AliError("No input PHYS data found ");
32d3e409 118 ok = 2000;
455957bc 119 }
61bd03f6 120 else {
121 // gFile->ls();
122 // TDirectory *dr = (TDirectory*) gFile->Get("T0Calib");
123 tzeroObj = dynamic_cast<TObjArray*>(gFile->Get("T0Calib"));
cd8ca88e 124 TString histname[4]={"fTzeroORAplusORC", "fTzeroORA", "fTzeroORC", "fResolution"};
125 for (Int_t i=0; i<4; i++)
b0ab3f59 126 {
bb54f817 127 if(cfd) cfd->Reset();
61bd03f6 128 if(tzeroObj)
129 cfd = (TH1F*)tzeroObj->FindObject( histname[i].Data());
bb54f817 130 else
dd92f5b8 131 cfd = (TH1F*)gFile ->Get(histname[i].Data());
132
133 if(!cfd) {
32d3e409 134 ok=300;
135 AliError(Form("no histograms collected for %s", histname[i].Data()));
b9dd81a7 136 return ok;
dd92f5b8 137 }
bb54f817 138 if(cfd) {
32d3e409 139 if( cfd->GetEntries() == 0) {
140 ok=300;
141 AliError(Form("%s histogram is empty", histname[i].Data()));
142 return ok;
143 }
cd8ca88e 144 GetMeanAndSigma(cfd, mean, sigma);
84fe4d28 145 if (sigma == 0 || sigma > 500 || cfd->GetEntries()<200 ){
32d3e409 146 ok = -100;
18086258 147 fMeanPar[i] = cdbtime[i];
84fe4d28 148 fSigmaPar[i] = -1;
18086258 149 }
84fe4d28 150 if ( sigma > 0 && sigma < 500 && cfd->GetEntries()>200)
cd8ca88e 151 {
b9dd81a7 152 fMeanPar[i] = mean;
cd8ca88e 153 fSigmaPar[i] = sigma;
cd8ca88e 154 }
455957bc 155 }
b0ab3f59 156 }
61bd03f6 157 }
158 gFile->Close();
159 delete gFile;
cd8ca88e 160 return ok;
161}
162//________________________________________________________________________
163void AliT0CalibSeasonTimeShift::GetMeanAndSigma(TH1F* hist, Float_t &mean, Float_t &sigma) {
164
18086258 165 const double window =2.; //fit window
cd8ca88e 166
167 double meanEstimate, sigmaEstimate;
168 int maxBin;
169 maxBin = hist->GetMaximumBin(); //position of maximum
170 meanEstimate = hist->GetBinCenter( maxBin); // mean of gaussian sitting in maximum
171 sigmaEstimate = hist->GetRMS();
172 TF1* fit= new TF1("fit","gaus", meanEstimate - window*sigmaEstimate, meanEstimate + window*sigmaEstimate);
173 fit->SetParameters(hist->GetBinContent(maxBin), meanEstimate, sigmaEstimate);
84fe4d28 174 hist->Fit("fit","RQ","Q");
cd8ca88e 175
176 mean = (Float_t) fit->GetParameter(1);
177 sigma = (Float_t) fit->GetParameter(2);
178
179 delete fit;
455957bc 180}