ROOT
6.10/09
Reference Guide
montecarlo
vmc
src
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
24
ClassImp
(
TVirtualMCGeometry
)
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
41
TVirtualMCGeometry::TVirtualMCGeometry
()
42
:
TNamed
()
43
{
44
}
45
46
////////////////////////////////////////////////////////////////////////////////
47
///
48
/// Destructor
49
///
50
51
TVirtualMCGeometry::~TVirtualMCGeometry
()
52
{
53
}
RegressionKeras.name
name
Definition:
RegressionKeras.py:30
TVirtualMCGeometry
Interface to Monte Carlo geometry construction.
Definition:
TVirtualMCGeometry.h:28
TVirtualMCGeometry::~TVirtualMCGeometry
virtual ~TVirtualMCGeometry()
Destructor.
Definition:
TVirtualMCGeometry.cxx:51
TNamed
The TNamed class is the base class for all named ROOT classes.
Definition:
TNamed.h:29
TVirtualMCGeometry.h
ClassImp
#define ClassImp(name)
Definition:
Rtypes.h:336
TVirtualMCGeometry::TVirtualMCGeometry
TVirtualMCGeometry()
Default constructor.
Definition:
TVirtualMCGeometry.cxx:41