]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0CalibSeasonTimeShift.cxx
protection if aplitude calibration for some PMT does not exist
[u/mrichter/AliRoot.git] / T0 / AliT0CalibSeasonTimeShift.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 /* $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
33 ClassImp(AliT0CalibSeasonTimeShift)
34
35 //________________________________________________________________
36   AliT0CalibSeasonTimeShift::AliT0CalibSeasonTimeShift():TNamed()
37 {
38   //
39
40 }
41
42 //________________________________________________________________
43 AliT0CalibSeasonTimeShift::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 //________________________________________________________________
54 AliT0CalibSeasonTimeShift::AliT0CalibSeasonTimeShift(const AliT0CalibSeasonTimeShift& calibda):TNamed(calibda)          
55
56 {
57 // copy constructor
58   SetName(calibda.GetName());
59   SetTitle(calibda.GetName());
60
61
62 }
63
64 //________________________________________________________________
65 AliT0CalibSeasonTimeShift &AliT0CalibSeasonTimeShift::operator =(const AliT0CalibSeasonTimeShift& calibda)
66 {
67 // assignment operator
68   SetName(calibda.GetName());
69   SetTitle(calibda.GetName());
70  
71   return *this;
72 }
73
74 //________________________________________________________________
75 AliT0CalibSeasonTimeShift::~AliT0CalibSeasonTimeShift()
76 {
77   //
78   // destrictor
79 }
80
81
82 //________________________________________________________________
83 void  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 //________________________________________________________________
94 Bool_t  AliT0CalibSeasonTimeShift::SetT0Par(Float_t par[4],Float_t spar[4])
95 {
96   Bool_t ok=false;
97  for (Int_t i=0; i<4; i++)
98     {
99       fMeanPar[i] = par[i];
100       fSigmaPar[i] = spar[i];
101       if ( fSigmaPar[i] == 0 ||  fSigmaPar[i] > 500) ok = false;
102     }
103  return ok;
104 }
105
106 //________________________________________________________________
107 Bool_t AliT0CalibSeasonTimeShift::SetT0Par(const char* filePhys, Float_t *cdbtime)
108 {
109   // compute online equalized time
110   Float_t mean, sigma;
111   Bool_t ok=true;
112   TH1F *cfd = NULL;
113   TObjArray * TzeroObj = NULL;
114
115   gFile = TFile::Open(filePhys);
116   if(!gFile) {
117     AliError("No input PHYS data found ");
118   }
119   else
120     {
121       //    gFile->ls();
122     TDirectory *dr = (TDirectory*) gFile->Get("T0Calib");
123     if (dr) TzeroObj = (TObjArray*) dr->Get("T0Calib");
124     TString histname[4]={"fTzeroORAplusORC", "fTzeroORA", "fTzeroORC",  "fResolution"};
125     for (Int_t i=0; i<4; i++)
126       {
127         if(cfd) cfd->Reset();
128         if(TzeroObj) 
129           cfd = (TH1F*)TzeroObj->FindObject( histname[i].Data());
130         else
131           cfd =  (TH1F*)gFile ->Get(histname[i].Data());
132
133         if(!cfd) {
134           AliWarning(Form("no histograms collected for %s", histname[i].Data()));
135           //      ok=false;
136           fMeanPar[i] = cdbtime[i];
137           fSigmaPar[i] = 0;
138           //      return ok;
139         }
140         if(cfd) {
141             GetMeanAndSigma(cfd, mean, sigma);
142             if (sigma == 0 || sigma > 500 || cfd->GetEntries()<500 ){
143               //ok = false;
144               fMeanPar[i] = cdbtime[i];
145               fSigmaPar[i] = 0;
146             }
147             if ( sigma > 0 && sigma < 500 && cfd->GetEntries()>500)
148               { 
149                 fMeanPar[i] = cdbtime[i] +  mean;
150                 fSigmaPar[i] = sigma;
151                 ok=true;
152               }
153           }
154       } 
155     
156     gFile->Close();
157     delete gFile;
158     
159     }
160   return ok;
161 }
162 //________________________________________________________________________
163 void AliT0CalibSeasonTimeShift::GetMeanAndSigma(TH1F* hist,  Float_t &mean, Float_t &sigma) {
164
165   const double window =2.;  //fit window 
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);
174   hist->Fit("fit","RQ","Q");
175
176   mean  = (Float_t) fit->GetParameter(1);
177   sigma = (Float_t) fit->GetParameter(2);
178
179   delete fit;
180 }