]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONv0.h
Possibility to investigate a primary of not yet loaded particle (I.Hrivnacova)
[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
9 /////////////////////////////////////////////////////////
10 //  Manager and hits classes for set:MUON version 0    //
11 /////////////////////////////////////////////////////////
12  
13 #include "AliMUON.h"
14 class AliMUONv0 : public AliMUON {
15 public:
16    AliMUONv0();
17    AliMUONv0(const char *name, const char *title);
18    virtual  ~AliMUONv0() {}
19    virtual void   CreateGeometry();
20    virtual void   CreateMaterials();
21    virtual void   Init();
22    virtual Int_t  IsVersion() const {return 0;}
23    virtual void   StepManager();
24 private:
25    ClassDef(AliMUONv0,1)  // MUON Detector class Version 0 
26 };
27 #endif
28
29
30
31
32
33
34