]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONv0.h
Initialize arrays in constructor (Ivana)
[u/mrichter/AliRoot.git] / MUON / AliMUONv0.h
1 #ifndef ALIMUONV0_H
2 #define ALIMUONV0_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8 // Revision of includes 07/05/2004
9
10 /////////////////////////////////////////////////////////
11 //  Manager and hits classes for set:
12 //  MUON version 0: Coarse geometry, no hits 
13 /////////////////////////////////////////////////////////
14  
15 #include "AliMUON.h"
16
17 class AliMUONv0 : public AliMUON 
18 {
19 public:
20    AliMUONv0();
21    AliMUONv0(const char *name, const char *title);
22    virtual  ~AliMUONv0() {}
23    virtual void   CreateGeometry();
24    virtual void   CreateMaterials();
25    virtual void   Init();
26    virtual Int_t  IsVersion() const {return 0;}  
27 private:
28    ClassDef(AliMUONv0,1)  // MUON Detector class Version 0 
29 };
30 #endif
31
32
33
34
35
36
37