Page Menu
Home
HEPForge
Search
Configure Global Search
Log In
Files
F9501354
FROG_Objects_Style.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
FROG_Objects_Style.h
View Options
// FROG_Objects_Style.h: interface for the FROG_Objects_Style class.
//
//////////////////////////////////////////////////////////////////////
#ifndef _FROG_OBJECTS_STYLE_H__
#define _FROG_OBJECTS_STYLE_H__
#include
"FROG_ReadCards.h"
class
FROG_Objects_Style
{
public
:
float
color_
[
4
];
float
thickness_
;
int
marker_
;
int
markerSize_
;
float
PtMin_
;
float
EMin_
;
public
:
FROG_Objects_Style
(){
color_
[
0
]
=
-
1
;
color_
[
1
]
=
-
1
;
color_
[
2
]
=
-
1
;
color_
[
3
]
=
1
;
thickness_
=
1
;
marker_
=
0
;
markerSize_
=
5
;
PtMin_
=
-
1
;
EMin_
=
-
1
;
}
FROG_Objects_Style
(
FROG_Objects_Style
*
style
){
if
(
style
!=
NULL
){
color_
[
0
]
=
style
->
color_
[
0
];
color_
[
1
]
=
style
->
color_
[
1
];
color_
[
2
]
=
style
->
color_
[
2
];
color_
[
3
]
=
style
->
color_
[
3
];
thickness_
=
style
->
thickness_
;
marker_
=
style
->
marker_
;
markerSize_
=
style
->
markerSize_
;
PtMin_
=
style
->
PtMin_
;
EMin_
=
style
->
EMin_
;
}
else
{
FROG_Objects_Style
();
}
}
void
init
(
FROG_ReadCards
*
frogCard_
){
}
};
#endif
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Feb 23, 2:22 PM (8 h, 22 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4486538
Default Alt Text
FROG_Objects_Style.h (1 KB)
Attached To
rFROGSVN frogsvn
Event Timeline
Log In to Comment