ROOT  6.06/09
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 //______________________________________________________________________________
16 // Virtual MCGeometry provides a virtual interface to Monte Carlo
17 // geometry construction.
18 //______________________________________________________________________________
19 
21 
22 ////////////////////////////////////////////////////////////////////////////////
23 ///
24 /// Standard constructor
25 ///
26 
27 TVirtualMCGeometry::TVirtualMCGeometry(const char *name, const char *title)
28  : TNamed(name,title)
29 {
30 }
31 
32 ////////////////////////////////////////////////////////////////////////////////
33 ///
34 /// Default constructor
35 ///
36 
38  : TNamed()
39 {
40 }
41 
42 ////////////////////////////////////////////////////////////////////////////////
43 ///
44 /// Destructor
45 ///
46 
48 {
49 }
virtual ~TVirtualMCGeometry()
Destructor.
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
ClassImp(TVirtualMCGeometry) TVirtualMCGeometry
Standard constructor.
#define name(a, b)
Definition: linkTestLib0.cpp:5
TVirtualMCGeometry()
Default constructor.