]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliMagF.cxx
i)Added the fAlirootVersion, fRootVesrion and fGeant3Version fields along with the...
[u/mrichter/AliRoot.git] / STEER / AliMagF.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 // Basic magnetic field class
20 // Used in all the detectors, and also in the traking classes
21 // Author:
22 //----------------------------------------------------------------------
23
24 #include "AliLog.h"
25 #include "AliMagF.h"
26 Bool_t AliMagF::fgReadField = kTRUE;
27 ClassImp(AliMagF)
28
29 //_______________________________________________________________________
30 AliMagF::AliMagF():
31   fMap(0),
32   fType(0),
33   fInteg(0),
34   fPrecInteg(1),
35   fFactor(0),
36   fMax(0)
37 {
38   //
39   // Default constructor
40   //
41 }
42
43 //_______________________________________________________________________
44 AliMagF::AliMagF(const char *name, const char *title, Int_t integ, 
45                  Float_t factor, Float_t fmax):
46   TNamed(name,title),
47   fMap(0),
48   fType(0),
49   fInteg(0),
50   fPrecInteg(1),
51   fFactor(factor),
52   fMax(fmax)
53 {
54   //
55   // Standard constructor
56   //
57     if(integ<0 || integ > 2) {
58       AliWarning(Form(
59               "Invalid magnetic field flag: %5d; Helix tracking chosen instead"
60               ,integ));
61       fInteg = 2;
62     } else {
63       fInteg = integ;
64     }
65     fType = kUndef;
66     //
67 }
68
69 //_______________________________________________________________________
70 void AliMagF::Field(Float_t*, Float_t *b) const
71 {
72   //
73   // Method to return the field in one point -- dummy in this case
74   //
75   AliWarning("Undefined MagF Field called, returning 0");
76   b[0]=b[1]=b[2]=0;
77 }