// @(#)root/gpad:$Id: TView.cxx 21345 2007-12-12 15:33:54Z couet $
// Author: Rene Brun  19/02/2007

/*************************************************************************
 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#include "TView.h"
#include "TROOT.h"
#include "TPluginManager.h"

ClassImp(TView)

//______________________________________________________________________________
/* Begin_Html
See TView3D
End_Html */

//____________________________________________________________________________
TView::TView(const TView& tv) :
   TObject(tv),
   TAttLine(tv)
{
   // Copy constructor.
}

//____________________________________________________________________________
TView *TView::CreateView(Int_t system, const Double_t *rmin, const Double_t *rmax) 
{
   // Create a concrete default 3-d view via the plug-in manager
   
   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 update: Thu Jan 17 09:04:58 2008

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.