ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
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:33
ClassImp(TVirtualMCGeometry) TVirtualMCGeometry
Standard constructor.
TPaveLabel title(3, 27.1, 15, 28.7,"ROOT Environment and Tools")
#define name(a, b)
Definition: linkTestLib0.cpp:5
TVirtualMCGeometry()
Default constructor.