]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TFluka/AliFluka.h
Fixing the previous unresolved bug before I was going on vacation.
[u/mrichter/AliRoot.git] / TFluka / AliFluka.h
1 #ifndef ALIFLUKA_H
2 #define ALIFLUKA_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 //                                                                           //
10 //                                                                           //
11 // FLUKA implementation of the AliMC Interface                               //
12 //                                                                           //
13 //                                                                           //
14 ///////////////////////////////////////////////////////////////////////////////
15
16
17 #include "TFluka.h"
18
19 class AliFluka : public TFluka
20 {
21  public:
22     AliFluka(const char *title) 
23         :TFluka(title){}
24     AliFluka() {;}
25     virtual ~AliFluka() {;}
26     virtual void Init();
27     virtual void ProcessRun(Int_t nevent);
28     virtual void ProcessEvent();
29   private:
30   AliFluka(const AliFluka &) {}
31   AliFluka & operator=(const AliFluka &) {return (*this);}
32
33   ClassDef(AliFluka,1)  //Fluka implementation of AliMC including Fluka specific methods
34 };
35
36 #endif 
37