CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GPFBase.cc
Go to the documentation of this file.
3 
4 //__________________________________________________________________
6  int viewType,
7  int ident,
8  TAttMarker *attm)
9  :display_(display),viewId_(viewType),origId_(ident),
10  markerAttr_(attm),lineAttr_(0),color_(0)
11 {
12 
13 }
14 //__________________________________________________________________
16  int viewType,
17  int ident,
18  TAttMarker *attm,
19  TAttLine *attl )
20  :display_(display),viewId_(viewType),origId_(ident),
21  markerAttr_(attm),lineAttr_(attl),color_(0)
22 {
23 }
24 //__________________________________________________________________
26  int viewType,
27  int ident,
28  int color )
29  :display_(display),viewId_(viewType),origId_(ident),
30  markerAttr_(0),lineAttr_(0),color_(color)
31 {
32 }
GPFBase(DisplayManager *display, int viewType, int ident, TAttMarker *attm, TAttLine *attl)
Definition: GPFBase.cc:15