Line data Source code
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 78 : virtual ~AliDIPOv3() {}
20 0 : virtual Int_t IsVersion() const {return 3;}
21 : private:
22 : virtual void CreateSpectrometerDipole();
23 56 : ClassDef(AliDIPOv3,1) //Class manager for magnetic dipole version 2
24 : };
25 :
26 : #endif
|