]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STRUCT/AliBODY.h
Set variable dummy even if not used.
[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 "AliModule.h"
9  
10  
11 class AliBODY : public AliModule {
12  
13 public:
14    AliBODY();
15    AliBODY(const char *name, const char *title);
16    virtual      ~AliBODY() {}
17    virtual void  CreateGeometry();
18    virtual void  CreateMaterials();
19    virtual Int_t IsVersion() const {return 0;}
20    virtual void  DrawModule();
21
22    ClassDef(AliBODY,1)  //Class manager for the ALICE body
23 };
24
25 #endif