]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCcalibBase.cxx
Adding fit parameterization of the magnetic field inside of the TPC
[u/mrichter/AliRoot.git] / TPC / AliTPCcalibBase.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
17 ///////////////////////////////////////////////////////////////////////////////
18 //                                                                           //
19 //  Base class for the calibration components using 
20 //  as input TPCseeds and ESDs
21 //  Event loop outside of the component
22 //
23 //
24 // Base functionality to be implemeneted by component 
25 /* 
26    //In some cases only one of this function to be implemented
27    virtual void     Process(AliESDEvent *event)
28    virtual void     Process(AliTPCseed *track)
29    //
30    virtual Long64_t Merge(TCollection *li);
31    virtual void     Analyze()
32    void             Terminate();
33 */
34 // Functionality provided by base class for Algorith debuging:
35 //  TTreeSRedirector * cstream =  GetDebugStreamer() - get debug streamer which can be use for numerical debugging
36 //                      
37
38
39
40 //  marian.ivanov@cern.ch
41 // 
42 #include "AliTPCcalibBase.h"
43 #include "TSystem.h"
44 #include "TFile.h"
45 #include "TTreeStream.h"
46 #include "AliLog.h"
47 #include "TTimeStamp.h"
48
49
50 ClassImp(AliTPCcalibBase)
51
52 AliTPCcalibBase::AliTPCcalibBase():
53     TNamed(),
54     fDebugStreamer(0),
55     fStreamLevel(0),
56     fDebugLevel(0)
57 {
58   //
59   // Constructor
60   //
61 }
62
63 AliTPCcalibBase::AliTPCcalibBase(const AliTPCcalibBase&calib):
64   TNamed(calib),
65   fDebugStreamer(0),
66   fStreamLevel(calib.fStreamLevel),
67   fDebugLevel(calib.fDebugLevel)
68 {
69   //
70   // copy constructor
71   //
72 }
73
74 AliTPCcalibBase &AliTPCcalibBase::operator=(const AliTPCcalibBase&calib){
75   //
76   //
77   //
78   ((TNamed *)this)->operator=(calib);
79   fDebugStreamer=0;
80   fStreamLevel=calib.fStreamLevel;
81   fDebugLevel=calib.fDebugLevel;
82   return *this;
83 }
84
85
86 AliTPCcalibBase::~AliTPCcalibBase() {
87   //
88   // destructor
89   //
90   if (fDebugLevel>0) printf("AliTPCcalibBase::~AliTPCcalibBase\n");
91   if (fDebugStreamer) delete fDebugStreamer;
92   fDebugStreamer=0;
93 }
94
95 void  AliTPCcalibBase::Terminate(){
96   //
97   //
98   //
99   if (fDebugLevel>0) printf("AliTPCcalibBase::Terminate\n");
100   if (fDebugStreamer) delete fDebugStreamer;
101   fDebugStreamer = 0;
102   return;
103 }
104
105 TTreeSRedirector *AliTPCcalibBase::GetDebugStreamer(){
106   //
107   // Get Debug streamer
108   // In case debug streamer not yet initialized and StreamLevel>0 create new one
109   //
110   if (fStreamLevel==0) return 0;
111   if (fDebugStreamer) return fDebugStreamer;
112   TString dsName;
113   dsName=GetName();
114   dsName+="Debug.root";
115   dsName.ReplaceAll(" ",""); 
116   fDebugStreamer = new TTreeSRedirector(dsName.Data());
117   return fDebugStreamer;
118 }
119
120
121 void AliTPCcalibBase::RegisterDebugOutput(const char *path){
122   //
123   // store  - copy debug output to the destination position
124   // currently ONLY for local copy
125   if (fDebugLevel>0) printf("AliTPCcalibBase::RegisterDebugOutput(%s)\n",path);
126   if (fStreamLevel==0) return;
127   TString dsName;
128   dsName=GetName();
129   dsName+="Debug.root";
130   dsName.ReplaceAll(" ",""); 
131   TString dsName2=path;
132   gSystem->MakeDirectory(dsName2.Data());
133   dsName2+=gSystem->HostName();
134   gSystem->MakeDirectory(dsName2.Data());
135   dsName2+="/";
136   TTimeStamp s;
137   dsName2+=Int_t(s.GetNanoSec());
138   dsName2+="/";
139   gSystem->MakeDirectory(dsName2.Data());
140   dsName2+=dsName;
141   AliInfo(Form("copy %s\t%s\n",dsName.Data(),dsName2.Data()));
142   printf("copy %s\t%s\n",dsName.Data(),dsName2.Data());
143   TFile::Cp(dsName.Data(),dsName2.Data());
144 }