]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliBODY.h
Set variable dummy even if not used.
[u/mrichter/AliRoot.git] / STRUCT / AliBODY.h
CommitLineData
fe4da5cc 1#ifndef BODY_H
2#define BODY_H
3////////////////////////////////////////////////
4// Manager class for detector: BODY //
5// This is the envelop for Alice //
6////////////////////////////////////////////////
7
b8032157 8#include "AliModule.h"
fe4da5cc 9
10
b8032157 11class AliBODY : public AliModule {
fe4da5cc 12
13public:
14 AliBODY();
15 AliBODY(const char *name, const char *title);
16 virtual ~AliBODY() {}
fe4da5cc 17 virtual void CreateGeometry();
18 virtual void CreateMaterials();
19 virtual Int_t IsVersion() const {return 0;}
b8032157 20 virtual void DrawModule();
21
fe4da5cc 22 ClassDef(AliBODY,1) //Class manager for the ALICE body
23};
24
25#endif