//*CMZ : 2.23/04 10/10/99 10.45.29 by Fons Rademakers
//*CMZ : 2.23/02 07/09/99 10.45.08 by Fons Rademakers
//*CMZ : 2.22/06 21/06/99 18.02.51 by Rene Brun
//*CMZ : 2.21/08 11/03/99 08.16.09 by Rene Brun
//*CMZ : 1.03/09 06/12/97 17.45.42 by Fons Rademakers
//*-- Author : Rene Brun 05/12/95
//*KEEP,CopyRight,T=C.
/*************************************************************************
* Copyright(c) 1995-1999, The ROOT System, All rights reserved. *
* Authors: Rene Brun and Fons Rademakers. *
* *
* For the licensing terms see $ROOTSYS/AA_LICENSE. *
* For the list of contributors see $ROOTSYS/AA_CREDITS. *
*************************************************************************/
//*KEND.
//*KEEP,TVirtualPad.
#include "TVirtualPad.h"
//*KEEP,X3DBuffer,T=C.
#include "X3DBuffer.h"
//*KEND.
Size3D gSize3D;
#ifdef R__THREAD
TVirtualPad *gPadMain = 0;
void **(*gThreadTsd)(void*,Int_t) = 0;
int (*gThreadXAR)(char *xact, Int_t nb, void **ar, Int_t *iret)=0;
#else
TVirtualPad *gPad = 0;
#endif
ClassImp(TVirtualPad)
//______________________________________________________________________________
//
// TVirtualPad is an abstract base class for the Pad and Canvas classes.
//
//______________________________________________________________________________
TVirtualPad::TVirtualPad() : TAttPad()
{
// VirtualPad default constructor
fResizing = kFALSE;
}
//______________________________________________________________________________
TVirtualPad::TVirtualPad(const Text_t *, const Text_t *, Float_t,
Float_t, Float_t, Float_t, Color_t color, Short_t , Short_t)
: TAttPad()
{
// VirtualPad constructor
fResizing = kFALSE;
SetFillColor(color);
SetFillStyle(1001);
}
//______________________________________________________________________________
TVirtualPad::~TVirtualPad()
{
// VirtualPad destructor
}
ROOT page - Class index - Top of the page
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.