Logo ROOT   6.14/05
Reference Guide
TVirtualMCGeometry.cxx
Go to the documentation of this file.
1 // @(#)root/vmc:$Id$
2 // Authors: Alice collaboration 25/06/2002
3 
4 /*************************************************************************
5  * Copyright (C) 2006, Rene Brun and Fons Rademakers. *
6  * Copyright (C) 2002, ALICE Experiment at CERN. *
7  * All rights reserved. *
8  * *
9  * For the licensing terms see $ROOTSYS/LICENSE. *
10  * For the list of contributors see $ROOTSYS/README/CREDITS. *
11  *************************************************************************/
12 
13 #include "TVirtualMCGeometry.h"
14 
15 /** \class TVirtualMCGeometry
16  \ingroup vmc
17 
18 Interface to Monte Carlo geometry construction.
19 
20 This class has been separated from VirtualMC and it is used
21 internally in TVirtualMC implementations.
22 */
23 
25 
26 ////////////////////////////////////////////////////////////////////////////////
27 ///
28 /// Standard constructor
29 ///
30 
31 TVirtualMCGeometry::TVirtualMCGeometry(const char *name, const char *title)
32  : TNamed(name,title)
33 {
34 }
35 
36 ////////////////////////////////////////////////////////////////////////////////
37 ///
38 /// Default constructor
39 ///
40 
42  : TNamed()
43 {
44 }
45 
46 ////////////////////////////////////////////////////////////////////////////////
47 ///
48 /// Destructor
49 ///
50 
52 {
53 }
Interface to Monte Carlo geometry construction.
virtual ~TVirtualMCGeometry()
Destructor.
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
#define ClassImp(name)
Definition: Rtypes.h:359
char name[80]
Definition: TGX11.cxx:109
TVirtualMCGeometry()
Default constructor.