Logo ROOT   6.08/07
Reference Guide
TView.cxx
Go to the documentation of this file.
1 // @(#)root/gpad:$Id$
2 // Author: Rene Brun 19/02/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 #include "TView.h"
13 #include "TROOT.h"
14 #include "TPluginManager.h"
15 
17 
18 /** \class TView
19 \ingroup gpad
20 
21 See TView3D.
22 */
23 
24 ////////////////////////////////////////////////////////////////////////////////
25 /// Copy constructor.
26 
27 TView::TView(const TView& tv) :
28  TObject(tv),
29  TAttLine(tv)
30 {
31 }
32 
33 ////////////////////////////////////////////////////////////////////////////////
34 /// Create a concrete default 3-d view via the plug-in manager
35 
36 TView *TView::CreateView(Int_t system, const Double_t *rmin, const Double_t *rmax)
37 {
38  TView *view = 0;
40  if ((h = gROOT->GetPluginManager()->FindHandler("TView"))) {
41  if (h->LoadPlugin() == -1)
42  return 0;
43  view = (TView*)h->ExecPlugin(3,system,rmin,rmax);
44  }
45  return view;
46 }
TH1 * h
Definition: legend2.C:5
See TView3D.
Definition: TView.h:29
#define gROOT
Definition: TROOT.h:364
Int_t LoadPlugin()
Load the plugin library for this handler.
int Int_t
Definition: RtypesCore.h:41
Long_t ExecPlugin(int nargs, const T &... params)
#define ClassImp(name)
Definition: Rtypes.h:279
double Double_t
Definition: RtypesCore.h:55
static TView * CreateView(Int_t system=1, const Double_t *rmin=0, const Double_t *rmax=0)
Create a concrete default 3-d view via the plug-in manager.
Definition: TView.cxx:36
Mother of all ROOT objects.
Definition: TObject.h:37
Line Attributes class.
Definition: TAttLine.h:24