]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONv0.h
Calculation of new variables needed for Non-id HBT added. (Z. Chajecki)
[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:MUON version 0    //
12 /////////////////////////////////////////////////////////
13  
14 #include "AliMUON.h"
15
16 class AliMUONv0 : public AliMUON 
17 {
18 public:
19    AliMUONv0();
20    AliMUONv0(const char *name, const char *title);
21    virtual  ~AliMUONv0() {}
22    virtual void   CreateGeometry();
23    virtual void   CreateMaterials();
24    virtual void   Init();
25    virtual Int_t  IsVersion() const {return 0;}
26    virtual void   StepManager();
27 private:
28    ClassDef(AliMUONv0,1)  // MUON Detector class Version 0 
29 };
30 #endif
31
32
33
34
35
36
37