]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCPreprocessorOffline.h
In AliMUONTrackerDDLDecoder:
[u/mrichter/AliRoot.git] / TPC / AliTPCPreprocessorOffline.h
CommitLineData
da268e11 1#ifndef ALITPCPREPROCESSOROFFLINE_H
2#define ALITPCPREPROCESSOROFFLINE_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
f12abd89 7//
da268e11 8//
9// Class to create OCDB entries - processing the results of the OFFLINE calibration
f12abd89 10//
11
da268e11 12
13#include "TNamed.h"
14class TObjArray;
15class AliTPCcalibTime;
16class AliTPCcalibTimeGain;
17class AliTPCROC;
f12abd89 18class AliTPCParam;
19class TPad;
20class AliCDBRunRange;
da268e11 21
f12abd89 22class AliTPCPreprocessorOffline:public TNamed {
da268e11 23public:
24 AliTPCPreprocessorOffline();
25 virtual ~AliTPCPreprocessorOffline();
da268e11 26 void UpdateOCDBDrift(Int_t ustartRun, Int_t uendRun, const char* storagePath);
27 void UpdateOCDBGain(Int_t startRunNumber, Int_t endRunNumber, const char* storagePath);
40120adc 28 void UpdateDriftParam(AliTPCParam *param, TObjArray *const arr, Int_t startRun);
da268e11 29
30 //
31 // v drift part
32 //
40120adc 33 void GetRunRange(AliTPCcalibTime* const timeDrift);
34 void CalibTimeVdrift(const Char_t* file, Int_t ustartRun, Int_t uendRun,TString ocdbStorage="");
35 void AddHistoGraphs( TObjArray * vdriftArray, AliTPCcalibTime * const timeDrift, Int_t minEntries);
36 void AddAlignmentGraphs( TObjArray * vdriftArray, AliTPCcalibTime * const timeDrift);
da268e11 37 void AddLaserGraphs( TObjArray * vdriftArray, AliTPCcalibTime *timeDrift);
38 void SetDefaultGraphDrift(TGraph *graph, Int_t color, Int_t style);
40120adc 39 void MakeDefaultPlots(TObjArray * const arr, TObjArray *picArray);
da268e11 40 //
41 // Gain part
42 //
40120adc 43 void CalibTimeGain(const Char_t* fileName, Int_t startRunNumber, Int_t endRunNumber, TString ocdbStorage);
44 void ReadGainGlobal(const Char_t* fileName="CalibObjectsTrain1.root");
da268e11 45 void MakeQAPlot(Float_t FPtoMIPratio);
46 Bool_t AnalyzeGain(Int_t startRunNumber, Int_t endRunNumber, Int_t minEntriesGaussFit = 500, Float_t FPtoMIPratio = 1.43);
391ffdb2 47 Bool_t AnalyzeAttachment(Int_t startRunNumber, Int_t endRunNumber, Int_t minEntriesFit = 2000);
da268e11 48 //
49 // QA drawing part
50 //
51 static void SetPadStyle(TPad *pad, Float_t mx0, Float_t mx1, Float_t my0, Float_t my1);
52 static void PrintArray(TObjArray *array);
53 //
54 // graph filtering part
55 //
56 static TGraphErrors* FilterGraphMedianAbs(TGraphErrors * graph, Float_t cut,Double_t &medianY);
57 static TGraphErrors* FilterGraphDrift(TGraphErrors * graph, Float_t errSigmaCut, Float_t medianCutAbs);
58 static TGraphErrors * MakeGraphFilter0(THnSparse *hisN, Int_t itime, Int_t ival, Int_t minEntries, Double_t offset=0);
59
40120adc 60private:
61 Int_t fMinEntries; // minimal number of entries for fit
da268e11 62 Int_t startRun; // start Run - used to make fast selection in THnSparse
63 Int_t endRun; // end Run - used to make fast selection in THnSparse
64 Int_t startTime; // startTime - used to make fast selection in THnSparse
65 Int_t endTime; // endTime - used to make fast selection in THnSparse
66 TString ocdbStorage; // path to the OCDB storage
40120adc 67 TObjArray * fVdriftArray; // array with output calibration graphs
68 AliTPCcalibTime * fTimeDrift; // input data to construct calibration graphs
da268e11 69 TGraphErrors * fGraphMIP; // graph time dependence of MIP
70 TGraphErrors * fGraphCosmic; // graph time dependence at Plateu
391ffdb2 71 TGraphErrors * fGraphAttachmentMIP; // graph time dependence of attachment (signal vs. mean driftlength)
da268e11 72 AliSplineFit * fFitMIP; // fit of dependence - MIP
73 AliSplineFit * fFitCosmic; // fit of dependence - Plateu
74 TObjArray * fGainArray; // array to be stored in the OCDB
75 AliTPCcalibTimeGain * fGainMIP; // calibration component for MIP
76 AliTPCcalibTimeGain * fGainCosmic; // calibration component for cosmic
77
78private:
f12abd89 79 AliTPCPreprocessorOffline& operator=(const AliTPCPreprocessorOffline&); // not implemented
80 AliTPCPreprocessorOffline(const AliTPCPreprocessorOffline&); // not implemented
da268e11 81 ClassDef(AliTPCPreprocessorOffline,1)
82};
83
84#endif