]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliBODY.h
This commit was generated by cvs2svn to compensate for changes in r2,
[u/mrichter/AliRoot.git] / STRUCT / AliBODY.h
1 #ifndef BODY_H
2 #define BODY_H
3 ////////////////////////////////////////////////
4 //  Manager class for detector: BODY          //
5 //   This is the envelop for Alice            //
6 ////////////////////////////////////////////////
7  
8 #include "AliDetector.h"
9  
10  
11 class AliBODY : public AliDetector {
12  
13 public:
14    AliBODY();
15    AliBODY(const char *name, const char *title);
16    virtual      ~AliBODY() {}
17    virtual void  BuildGeometry();
18    virtual void  CreateGeometry();
19    virtual void  CreateMaterials();
20    virtual Int_t IsVersion() const {return 0;}
21    virtual void  DrawDetector();
22    virtual void  StepManager();
23  
24    ClassDef(AliBODY,1)  //Class manager for the ALICE body
25 };
26
27 #endif