]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliMagFMaps.cxx
Common class for DCS sensors (Haavard, Marian)
[u/mrichter/AliRoot.git] / STEER / AliMagFMaps.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$ */
17
18 //------------------------------------------------------------------------
19 // Magnetic field composed by 3 maps: the L3 magnet, extended region, and
20 // dipole magnet
21 // Used in the configuration macros (macros/Config.C, etc.)
22 // Author: Andreas Morsch <andreas.morsch@cern.ch>
23 //------------------------------------------------------------------------
24
25 #include <TClass.h>
26 #include <TFile.h>
27 #include <TMath.h>
28 #include <TSystem.h>
29
30 #include "AliLog.h"
31 #include "AliFieldMap.h"
32 #include "AliMagFMaps.h"
33
34 ClassImp(AliMagFMaps)
35     
36
37 //_______________________________________________________________________
38 AliMagFMaps::AliMagFMaps():
39   fSolenoid(0),
40   fSolenoidUser(0.),
41   fL3Option(0)
42 {
43   //
44   // Default constructor
45   //
46   //
47   // Don't replicate field information in gAlice
48   fFieldMap[0] = fFieldMap[1] = fFieldMap[2] = 0;
49 }
50
51 //_______________________________________________________________________
52 AliMagFMaps::AliMagFMaps(const char *name, const char *title, Int_t integ, 
53                          Float_t factor, Float_t fmax, Int_t map, 
54                          Int_t l3):
55   AliMagFC(name,title,integ,factor,fmax),
56   fSolenoid(0),
57   fSolenoidUser(0),
58   fL3Option(l3)
59 {
60   //
61   // Standard constructor
62   //
63   fType         = kConMesh;
64   fFieldMap[0]  = 0;
65   fMap          = map;
66   fL3Option     = l3;
67   ReadField();
68   //
69   // Don't replicate field information in gAlice
70   for (Int_t i = 0; i < 3; i++)  fFieldMap[i]->SetWriteEnable(0);
71   //
72 }
73
74 //_______________________________________________________________________
75 AliMagFMaps::AliMagFMaps(const AliMagFMaps &magf):
76   AliMagFC(magf),
77   fSolenoid(0),
78   fSolenoidUser(0),
79   fL3Option(0)
80 {
81   //
82   // Copy constructor
83   //
84   magf.Copy(*this);
85 }
86
87 //_______________________________________________________________________
88 AliMagFMaps::~AliMagFMaps()
89 {
90   //
91   //  Destructor
92   //
93   delete fFieldMap[0];
94   delete fFieldMap[1];
95   delete fFieldMap[2];    
96   fgReadField = kTRUE;
97 }
98
99 //_______________________________________________________________________
100 void AliMagFMaps::ReadField()
101 {
102   //  Read Field Map from file
103   //
104   //  don't read twice
105   //
106     if (!fgReadField) return;
107     fgReadField = 0;
108   //    
109   char* fname;
110   TFile* file = 0;
111   if (fMap == k2kG) {
112       fSolenoid = 2.;
113       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/L3B02.root");
114       file = new TFile(fname);
115       fFieldMap[0] = dynamic_cast<AliFieldMap*>(file->Get("L3B02"));
116       file->Close();
117       delete file;
118       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/DipB02.root");
119       file = new TFile(fname);
120       fFieldMap[1] = dynamic_cast<AliFieldMap*>(file->Get("DipB02"));
121       file->Close();
122       delete file;;
123       
124       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/ExtB02.root");
125       file = new TFile(fname);
126       fFieldMap[2] = dynamic_cast<AliFieldMap*>(file->Get("ExtB02"));
127       file->Close();
128       delete file;
129   } else if (fMap == k4kG) {
130       fSolenoid = 4.;
131       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/L3B04.root");
132       file = new TFile(fname);
133       fFieldMap[0] = dynamic_cast<AliFieldMap*>(file->Get("L3B04"));
134       file->Close();
135       delete file;
136       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/DipB04.root");
137       file = new TFile(fname);
138       fFieldMap[1] = dynamic_cast<AliFieldMap*>(file->Get("DipB04"));
139       file->Close();
140       delete file;
141       
142       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/ExtB04.root");
143       file = new TFile(fname);
144       fFieldMap[2] = dynamic_cast<AliFieldMap*>(file->Get("ExtB04"));
145       file->Close();
146       delete file;
147   } else if (fMap == k5kG) {
148       fSolenoid = 5.;
149       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/L3B05.root");
150       file = new TFile(fname);
151       fFieldMap[0] = dynamic_cast<AliFieldMap*>(file->Get("L3B05"));
152       file->Close();
153       delete file;
154       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/DipB05.root");
155       file = new TFile(fname);
156       fFieldMap[1] = dynamic_cast<AliFieldMap*>(file->Get("DipB05"));
157       file->Close();
158       delete file;
159       
160       fname = gSystem->ExpandPathName("$(ALICE_ROOT)/data/maps/ExtB05.root");
161       file = new TFile(fname);
162       fFieldMap[2] = dynamic_cast<AliFieldMap*>(file->Get("ExtB05"));
163       file->Close();
164       delete file;
165   }
166
167   if (!fL3Option) fSolenoidUser = fSolenoid;
168
169 }
170
171 //_______________________________________________________________________
172 Float_t AliMagFMaps::SolenoidField() const
173 {
174   //
175   // Returns max. L3 (solenoid) field strength 
176   // according to field map setting 
177   //
178   return -Factor()*fSolenoid;
179 }
180
181 //_______________________________________________________________________
182 void AliMagFMaps::Field(Float_t *x, Float_t *b) const
183 {
184   //
185   // Method to calculate the magnetic field
186   //
187   // --- find the position in the grid ---
188   
189
190     
191  //    if (!fFieldRead) ReadField();
192
193   //
194   // Field Maps have been calculated for the coordinate system in which 
195   // the Muon Spectrometer is placed at z > 0
196   // Transform coordinates corresponingly 
197   //
198   
199   b[0]=b[1]=b[2]=0;
200   Float_t xm[3];
201   xm[0] = - x[0];
202   xm[1] =   x[1];
203   xm[2] = - x[2];
204   
205   AliFieldMap* map = 0;
206   if (fFieldMap[0]->Inside(xm[0], xm[1], xm[2])) {
207       map = fFieldMap[0];
208       Float_t r = TMath::Sqrt(xm[0] * xm[0] + xm[1] * xm[1]);
209       
210       if (!fL3Option && TMath::Abs(xm[2]) < 370. && r < 550.) {
211       //
212       //     Constant L3 field , if this option was selected
213       //
214         b[2] = (- fSolenoid)*fFactor;
215           return;
216       } 
217   } else if (fFieldMap[1]->Inside(xm[0], xm[1], xm[2])) {
218     map = fFieldMap[1];
219   } else if (fFieldMap[2]->Inside(xm[0], xm[1], xm[2])) {
220     map = fFieldMap[2];
221   }
222   
223   if(map){
224     map->Field(xm,b);
225     b[0] = - b[0];
226     b[2] = - b[2];
227
228   } else {
229       //This is the ZDC part
230       ZDCField(x, b);
231   }
232
233   
234   if(fFactor!=1) {
235       b[0]*=fFactor;
236       b[1]*=fFactor;
237       b[2]*=fFactor;
238   }
239 }
240
241 //_______________________________________________________________________
242 void AliMagFMaps::Copy(TObject & /* magf */) const
243 {
244   //
245   // Copy *this onto magf -- Not implemented
246   //
247   AliFatal("Not implemented!");
248 }
249
250 //_______________________________________________________________________
251 void AliMagFMaps::Streamer(TBuffer &R__b)
252 {
253   // Stream an object of class AliMagFMaps.
254   if (R__b.IsReading()) {
255     AliMagFMaps::Class()->ReadBuffer(R__b, this);
256     ReadField();
257   } else {
258     AliMagFMaps::Class()->WriteBuffer(R__b, this);
259   }
260 }