]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliPIPEvGEO.h
Updated recess dimensions.
[u/mrichter/AliRoot.git] / STRUCT / AliPIPEvGEO.h
1 #ifndef ALIPIPEVGEO_H
2 #define ALIPIPEVGEO_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 // ALICE beam pipe geometry                            //
10 // This version uses TGeo.                             //
11 // Author:                                             //
12 // Andreas Morsch                                      //
13 // e-mail: andreas.morsch@cern.ch                      // 
14 /////////////////////////////////////////////////////////
15  
16 #include "AliPIPE.h"
17
18 class AliPIPEvGEO : public AliPIPE {
19   
20  public:
21     enum constants {kC=6, kAlu=9, kInox=19, kGetter=20, kBe=5, kVac=16,
22           kAir=15, kAlBe=21, kPA = 22};
23         
24   AliPIPEvGEO();
25   AliPIPEvGEO(const char *name, const char *title);
26   virtual       ~AliPIPEvGEO() {}
27   virtual void   CreateGeometry();
28   virtual void   CreateMaterials();
29   virtual Int_t  IsVersion() const {return 0;}
30  protected:
31   ClassDef(AliPIPEvGEO,1)  //Class for PIPE version using TGeo
32 };
33  
34 #endif