| 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 *name, const char *title) |
| 23 | {TFluka(name, title);} |
| 24 | AliFluka() {;} |
| 25 | virtual ~AliFluka() {;} |
| 26 | virtual void ProcessRun(Int_t nevent); |
| 27 | virtual void ProcessEvent(); |
| 28 | private: |
| 29 | AliFluka(const AliFluka &) {} |
| 30 | AliFluka & operator=(const AliFluka &) {return (*this);} |
| 31 | |
| 32 | ClassDef(AliFluka,1) //Fluka implementation of AliMC including Fluka specific methods |
| 33 | }; |
| 34 | |
| 35 | #endif |
| 36 | |