Loading [MathJax]/extensions/tex2jax.js
ROOT
6.06/09
Reference Guide
ROOT Home Page
Main Page
Related Pages
User's Classes
Namespaces
All Classes
Files
Release Notes
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
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
//______________________________________________________________________________
16
// Virtual MCGeometry provides a virtual interface to Monte Carlo
17
// geometry construction.
18
//______________________________________________________________________________
19
20
ClassImp
(
TVirtualMCGeometry
)
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
37
TVirtualMCGeometry::TVirtualMCGeometry
()
38
:
TNamed
()
39
{
40
}
41
42
////////////////////////////////////////////////////////////////////////////////
43
///
44
/// Destructor
45
///
46
47
TVirtualMCGeometry::~TVirtualMCGeometry
()
48
{
49
}
TVirtualMCGeometry
Definition:
TVirtualMCGeometry.h:28
TVirtualMCGeometry::~TVirtualMCGeometry
virtual ~TVirtualMCGeometry()
Destructor.
Definition:
TVirtualMCGeometry.cxx:47
TNamed
The TNamed class is the base class for all named ROOT classes.
Definition:
TNamed.h:33
ClassImp
ClassImp(TVirtualMCGeometry) TVirtualMCGeometry
Standard constructor.
Definition:
TVirtualMCGeometry.cxx:20
TVirtualMCGeometry.h
name
#define name(a, b)
Definition:
linkTestLib0.cpp:5
TVirtualMCGeometry::TVirtualMCGeometry
TVirtualMCGeometry()
Default constructor.
Definition:
TVirtualMCGeometry.cxx:37