]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TFluka/AliFluka.h
Added AliL3Stopwatch.
[u/mrichter/AliRoot.git] / TFluka / AliFluka.h
CommitLineData
03ca248b 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
19class AliFluka : public TFluka
20{
21 public:
8baddb27 22 AliFluka(const char *title)
23 :TFluka(title){}
03ca248b 24 AliFluka() {;}
25 virtual ~AliFluka() {;}
8baddb27 26 virtual void Init();
03ca248b 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