]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STRUCT/AliBODY.h
Tempory MUON version which has full signal generation (summable digits) and geometry...
[u/mrichter/AliRoot.git] / STRUCT / AliBODY.h
CommitLineData
b43eb0dc 1#ifndef ALIBODY_H
2#define ALIBODY_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
fe4da5cc 8////////////////////////////////////////////////
9// Manager class for detector: BODY //
10// This is the envelop for Alice //
11////////////////////////////////////////////////
12
b8032157 13#include "AliModule.h"
fe4da5cc 14
15
b8032157 16class AliBODY : public AliModule {
fe4da5cc 17
18public:
19 AliBODY();
20 AliBODY(const char *name, const char *title);
21 virtual ~AliBODY() {}
fe4da5cc 22 virtual void CreateGeometry();
23 virtual void CreateMaterials();
24 virtual Int_t IsVersion() const {return 0;}
b8032157 25 virtual void DrawModule();
26
fe4da5cc 27 ClassDef(AliBODY,1) //Class manager for the ALICE body
28};
29
30#endif