]> git.uio.no Git - u/mrichter/AliRoot.git/blame - DIME/dime/AliDimeRndm.h
Update master to aliroot
[u/mrichter/AliRoot.git] / DIME / dime / AliDimeRndm.h
CommitLineData
de4b745b 1#ifndef ALIDIMERNDM_H
2#define ALIDIMERNDM_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#include <Rtypes.h>
9#include <TError.h>
10
11class TRandom;
12
13class AliDimeRndm {
14 public:
15 AliDimeRndm() {
16 // Default constructor. The static data member is initialized
17 // in the implementation file
18 }
19 AliDimeRndm(const AliDimeRndm &/*rn*/) {
20 // Copy constructor: no copy allowed for the object
21 ::Fatal("Copy constructor","Not allowed\n");
22 }
23 virtual ~AliDimeRndm() {
24 // Destructor
25 fgDimeRandom=0;
26 }
27 AliDimeRndm & operator=(const AliDimeRndm& /*rn*/) {
28 // Assignment operator: no assignment allowed
29 ::Fatal("Assignment operator","Not allowed\n");
30 return (*this);
31 }
32
33 static void SetDimeRandom(TRandom *ran=0);
34 static TRandom * GetDimeRandom();
35
36private:
37
38 static TRandom * fgDimeRandom; //! pointer to the random number generator
39
40 ClassDef(AliDimeRndm,0) //Random Number generator wrapper (non persistent)
41};
42
43#endif
44