]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STRUCT/AliBODY.h
Do not delete pointer to singleton object
[u/mrichter/AliRoot.git] / STRUCT / AliBODY.h
... / ...
CommitLineData
1#ifndef ALIBODY_H
2#define ALIBODY_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// Manager class for detector: BODY //
10// This is the envelop for Alice //
11////////////////////////////////////////////////
12
13#include "AliModule.h"
14
15
16class AliBODY : public AliModule {
17
18public:
19 AliBODY();
20 AliBODY(const char *name, const char *title);
21 virtual ~AliBODY() {}
22 virtual void CreateGeometry();
23 virtual void CreateMaterials();
24 virtual Int_t IsVersion() const {return 0;}
25
26 ClassDef(AliBODY,1) //Class manager for the ALICE body
27};
28
29#endif