]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliDIPOv3.h
Measured field map as objects of type AliMagFCheb (R. Shahoyan)
[u/mrichter/AliRoot.git] / STRUCT / AliDIPOv3.h
1 #ifndef ALIDIPOV3_H
2 #define ALIDIPOV3_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 /////////////////////////////////////////////////
9 //  Manager class for detector: DIPO version 3 //
10 /////////////////////////////////////////////////
11  
12 #include "AliDIPOv2.h"
13   
14 class AliDIPOv3 : public AliDIPOv2 {
15   
16 public:
17   AliDIPOv3();
18   AliDIPOv3(const char *name, const char *title);
19   virtual      ~AliDIPOv3() {}
20   virtual Int_t IsVersion() const {return 3;}
21   Float_t GetCenterOfDDIPVolume() {return fCenterOfDDIPVolume;} // This getter is needed for placing the Station 3 of the muon spectromeer inside de Dipole
22  private:
23   virtual void  CreateSpectrometerDipole();
24   Float_t fCenterOfDDIPVolume;
25   ClassDef(AliDIPOv3,1)  //Class manager for magnetic dipole version 2
26 };
27
28 #endif