ROOT
6.10/00
Reference Guide
ROOT Home Page
Main Page
Tutorials
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
Groups
Pages
geom
geocad
inc
TGeoToStep.h
Go to the documentation of this file.
1
// @(#)geom/geocad:$Id$
2
// Author: Cinzia Luzzi 5/5/2012
3
4
/*************************************************************************
5
* Copyright (C) 1995-2012, Rene Brun and Fons Rademakers. *
6
* All rights reserved. *
7
* *
8
* For the licensing terms see $ROOTSYS/LICENSE. *
9
* For the list of contributors see $ROOTSYS/README/CREDITS. *
10
*************************************************************************/
11
12
#ifndef ROOT_TGeoToStep
13
#define ROOT_TGeoToStep
14
15
#include "
TObject.h
"
16
17
class
TGeoManager
;
18
class
TOCCToStep
;
19
20
21
class
TGeoToStep
:
public
TObject
{
22
23
protected
:
24
TGeoManager
*
fGeometry
;
//ROOT geometry pointer
25
TOCCToStep
*
fCreate
;
//OCC geometry build based on Root one
26
27
public
:
28
TGeoToStep
();
29
TGeoToStep
(
TGeoManager
*geom);
30
~TGeoToStep
();
31
void
*
CreateGeometry
();
32
33
ClassDef
(
TGeoToStep
,0)
34
};
35
36
#endif
TGeoManager
The manager class for any TGeo geometry.
Definition:
TGeoManager.h:37
TGeoToStep::CreateGeometry
void * CreateGeometry()
Definition:
TGeoToStep.cxx:65
TGeoToStep::fGeometry
TGeoManager * fGeometry
Definition:
TGeoToStep.h:24
TGeoToStep::~TGeoToStep
~TGeoToStep()
Definition:
TGeoToStep.cxx:60
TGeoToStep::TGeoToStep
TGeoToStep()
Definition:
TGeoToStep.cxx:50
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:297
TOCCToStep
Definition:
TOCCToStep.h:27
TObject
Mother of all ROOT objects.
Definition:
TObject.h:37
TObject.h
TGeoToStep::fCreate
TOCCToStep * fCreate
Definition:
TGeoToStep.h:25
TGeoToStep
Definition:
TGeoToStep.h:21