ROOT
6.07/01
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
graf3d
eve
inc
TEveGeoShapeExtract.h
Go to the documentation of this file.
1
// @(#)root/eve:$Id$
2
// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4
/*************************************************************************
5
* Copyright (C) 1995-2007, 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_TEveGeoShapeExtract
13
#define ROOT_TEveGeoShapeExtract
14
15
#include "
TNamed.h
"
16
17
class
TList
;
18
class
TGeoShape
;
19
20
class
TEveGeoShapeExtract
:
public
TNamed
21
{
22
TEveGeoShapeExtract
(
const
TEveGeoShapeExtract
&);
// Not implemented
23
TEveGeoShapeExtract
&
operator=
(
const
TEveGeoShapeExtract
&);
// Not implemented
24
25
protected
:
26
Double_t
fTrans
[16];
// Transformation matrix, 4x4 column major.
27
Float_t
fRGBA
[4];
// RGBA color.
28
Float_t
fRGBALine
[4];
// RGBA color.
29
Bool_t
fRnrSelf
;
// Render this object.
30
Bool_t
fRnrElements
;
// Render children of this object.
31
Bool_t
fRnrFrame
;
// Also draw shape outline.
32
Bool_t
fMiniFrame
;
// Minimize shape outline when drawing.
33
TGeoShape
*
fShape
;
// Shape to be drawn for this object.
34
TList
*
fElements
;
// Children elements.
35
36
public
:
37
TEveGeoShapeExtract
(
const
char
*
n
=
"TEveGeoShapeExtract"
,
const
char
*
t
=0);
38
~TEveGeoShapeExtract
();
39
40
Bool_t
HasElements
();
41
void
AddElement
(
TEveGeoShapeExtract
* gse);
42
43
void
SetTrans
(
const
Double_t
arr[16]);
44
void
SetRGBA
(
const
Float_t
arr[4]);
45
void
SetRGBALine
(
const
Float_t
arr[4]);
46
void
SetRnrSelf
(
Bool_t
r
) {
fRnrSelf
=
r
; }
47
void
SetRnrElements
(
Bool_t
r
) {
fRnrElements
=
r
; }
48
void
SetRnrFrame
(
Bool_t
r
) {
fRnrFrame
=
r
; }
49
void
SetMiniFrame
(
Bool_t
r
) {
fMiniFrame
=
r
; }
50
void
SetShape
(
TGeoShape
* s) {
fShape
= s; }
51
void
SetElements
(
TList
* e) {
fElements
= e; }
52
53
Double_t
*
GetTrans
() {
return
fTrans
; }
54
Float_t
*
GetRGBA
() {
return
fRGBA
; }
55
Float_t
*
GetRGBALine
() {
return
fRGBALine
; }
56
Bool_t
GetRnrSelf
() {
return
fRnrSelf
; }
57
Bool_t
GetRnrElements
() {
return
fRnrElements
; }
58
Bool_t
GetRnrFrame
() {
return
fRnrFrame
; }
59
Bool_t
GetMiniFrame
() {
return
fMiniFrame
; }
60
TGeoShape
*
GetShape
() {
return
fShape
; }
61
TList
*
GetElements
() {
return
fElements
; }
62
63
ClassDef
(
TEveGeoShapeExtract
, 2);
// Globally positioned TGeoShape with rendering attributes and an optional list of daughter shape-extracts.
64
};
65
66
#endif
TEveGeoShapeExtract::SetTrans
void SetTrans(const Double_t arr[16])
Set transformation matrix.
Definition:
TEveGeoShapeExtract.cxx:80
TEveGeoShapeExtract::GetRGBALine
Float_t * GetRGBALine()
Definition:
TEveGeoShapeExtract.h:55
TEveGeoShapeExtract::SetRGBA
void SetRGBA(const Float_t arr[4])
Set RGBA color.
Definition:
TEveGeoShapeExtract.cxx:89
TEveGeoShapeExtract::~TEveGeoShapeExtract
~TEveGeoShapeExtract()
Destructor. Delete shape and elements.
Definition:
TEveGeoShapeExtract.cxx:52
TEveGeoShapeExtract
Globally positioned TGeoShape with rendering attributes and an optional list of daughter shape-extrac...
Definition:
TEveGeoShapeExtract.h:20
Float_t
float Float_t
Definition:
RtypesCore.h:53
TEveGeoShapeExtract::SetRnrSelf
void SetRnrSelf(Bool_t r)
Definition:
TEveGeoShapeExtract.h:46
TEveGeoShapeExtract::GetRnrFrame
Bool_t GetRnrFrame()
Definition:
TEveGeoShapeExtract.h:58
TEveGeoShapeExtract::ClassDef
ClassDef(TEveGeoShapeExtract, 2)
TEveGeoShapeExtract::GetRnrSelf
Bool_t GetRnrSelf()
Definition:
TEveGeoShapeExtract.h:56
Bool_t
bool Bool_t
Definition:
RtypesCore.h:59
TEveGeoShapeExtract::fRnrElements
Bool_t fRnrElements
Definition:
TEveGeoShapeExtract.h:30
TEveGeoShapeExtract::SetMiniFrame
void SetMiniFrame(Bool_t r)
Definition:
TEveGeoShapeExtract.h:49
TEveGeoShapeExtract::SetShape
void SetShape(TGeoShape *s)
Definition:
TEveGeoShapeExtract.h:50
TNamed.h
TNamed
The TNamed class is the base class for all named ROOT classes.
Definition:
TNamed.h:33
TEveGeoShapeExtract::fRnrFrame
Bool_t fRnrFrame
Definition:
TEveGeoShapeExtract.h:31
TEveGeoShapeExtract::GetTrans
Double_t * GetTrans()
Definition:
TEveGeoShapeExtract.h:53
TEveGeoShapeExtract::fTrans
Double_t fTrans[16]
Definition:
TEveGeoShapeExtract.h:26
TList
A doubly linked list.
Definition:
TList.h:47
TEveGeoShapeExtract::SetElements
void SetElements(TList *e)
Definition:
TEveGeoShapeExtract.h:51
TEveGeoShapeExtract::fRGBALine
Float_t fRGBALine[4]
Definition:
TEveGeoShapeExtract.h:28
t
TThread * t[5]
Definition:
threadsh1.C:13
TEveGeoShapeExtract::GetRGBA
Float_t * GetRGBA()
Definition:
TEveGeoShapeExtract.h:54
TEveGeoShapeExtract::GetRnrElements
Bool_t GetRnrElements()
Definition:
TEveGeoShapeExtract.h:57
TGeoShape
Definition:
TGeoShape.h:35
r
ROOT::R::TRInterface & r
Definition:
Object.C:4
TEveGeoShapeExtract::fElements
TList * fElements
Definition:
TEveGeoShapeExtract.h:34
TEveGeoShapeExtract::AddElement
void AddElement(TEveGeoShapeExtract *gse)
Add a child element.
Definition:
TEveGeoShapeExtract.cxx:69
TEveGeoShapeExtract::fRGBA
Float_t fRGBA[4]
Definition:
TEveGeoShapeExtract.h:27
TEveGeoShapeExtract::SetRGBALine
void SetRGBALine(const Float_t arr[4])
Set RGBA color for line.
Definition:
TEveGeoShapeExtract.cxx:98
TEveGeoShapeExtract::fMiniFrame
Bool_t fMiniFrame
Definition:
TEveGeoShapeExtract.h:32
TEveGeoShapeExtract::SetRnrFrame
void SetRnrFrame(Bool_t r)
Definition:
TEveGeoShapeExtract.h:48
TEveGeoShapeExtract::GetElements
TList * GetElements()
Definition:
TEveGeoShapeExtract.h:61
Double_t
double Double_t
Definition:
RtypesCore.h:55
TEveGeoShapeExtract::HasElements
Bool_t HasElements()
True if has at least one element.
Definition:
TEveGeoShapeExtract.cxx:61
TEveGeoShapeExtract::TEveGeoShapeExtract
TEveGeoShapeExtract(const TEveGeoShapeExtract &)
TEveGeoShapeExtract::GetShape
TGeoShape * GetShape()
Definition:
TEveGeoShapeExtract.h:60
TEveGeoShapeExtract::GetMiniFrame
Bool_t GetMiniFrame()
Definition:
TEveGeoShapeExtract.h:59
TEveGeoShapeExtract::fRnrSelf
Bool_t fRnrSelf
Definition:
TEveGeoShapeExtract.h:29
TEveGeoShapeExtract::operator=
TEveGeoShapeExtract & operator=(const TEveGeoShapeExtract &)
TEveGeoShapeExtract::SetRnrElements
void SetRnrElements(Bool_t r)
Definition:
TEveGeoShapeExtract.h:47
n
const Int_t n
Definition:
legend1.C:16
TEveGeoShapeExtract::fShape
TGeoShape * fShape
Definition:
TEveGeoShapeExtract.h:33