]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4GuiVolume.cxx
Correcting coding convention violations
[u/mrichter/AliRoot.git] / TGeant4 / TG4GuiVolume.cxx
1 // $Id$
2 // Category: interfaces
3 //
4 // Author: D. Adamova
5 //
6 //==================================================================
7 //
8 //----------------TG4GuiVolume.cxx-------------------------------//
9 //----Creating link for Logical Volume Tree in AG4 Geometry----//
10 //
11 //===================================================================
12  
13  
14  
15 #include "TG4GuiVolume.h"
16 #include <G4LogicalVolume.hh>
17  
18
19 ClassImp(TG4GuiVolume)
20
21 TG4GuiVolume::TG4GuiVolume(const char* name, G4LogicalVolume* lvolume)
22 {
23 // Constructor
24     fkName   = name;
25     fItem   = 0;
26     fLogicalVolume = lvolume; 
27 }
28
29 G4LogicalVolume* TG4GuiVolume::GetLogicalVolume() const
30 {
31 // Returns logical volume
32   return fLogicalVolume;
33 }