#include "TView.h"
#include "TROOT.h"
#include "TPluginManager.h"
ClassImp(TView)
TView::TView(const TView& tv) :
TObject(tv),
TAttLine(tv)
{
}
TView *TView::CreateView(Int_t system, const Double_t *rmin, const Double_t *rmax)
{
TView *view = 0;
TPluginHandler *h;
if ((h = gROOT->GetPluginManager()->FindHandler("TView"))) {
if (h->LoadPlugin() == -1)
return 0;
view = (TView*)h->ExecPlugin(3,system,rmin,rmax);
}
return view;
}
Last change: Wed Jun 25 08:54:40 2008
Last generated: 2008-06-25 08:54
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.