]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4VVerbose.cxx
Class for fixed point operations.
[u/mrichter/AliRoot.git] / TGeant4 / TG4VVerbose.cxx
1 // $Id$
2 // Category: global
3 //
4 // Author: I. Hrivnacova
5 //
6 // Class TG4Verbose
7 // -------------------
8 // See the class description in the header file.
9
10 #include "TG4VVerbose.h"
11 #include "TG4Globals.h"
12
13 #include <math.h>
14
15 // static data members
16 const G4int TG4VVerbose::fgkDefaultVerboseLevel = 1;
17
18 //_____________________________________________________________________________
19 TG4VVerbose::TG4VVerbose()
20   : fVerboseLevel(fgkDefaultVerboseLevel) {
21 //
22 }
23   
24 //_____________________________________________________________________________
25 TG4VVerbose::TG4VVerbose(G4int verboseLevel) 
26   : fVerboseLevel(verboseLevel) {
27 // 
28 }
29
30 //_____________________________________________________________________________
31 TG4VVerbose::~TG4VVerbose() {
32 //
33 }
34