Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TEvePlot3D.cxx
Go to the documentation of this file.
1 // @(#)root/eve:$Id$
2 // Author: Matevz Tadel, 2009
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 "TEvePlot3D.h"
13 #include "TEveTrans.h"
14 
15 /** \class TEvePlot3D
16 \ingroup TEve
17 Description of TEvePlot3D
18 */
19 
20 ClassImp(TEvePlot3D);
21 
22 ////////////////////////////////////////////////////////////////////////////////
23 /// Constructor.
24 
25 TEvePlot3D::TEvePlot3D(const char* n, const char* t) :
26  TEveElementList(n, t),
27  fPlot(0),
28  fLogX(kFALSE), fLogY(kFALSE), fLogZ(kFALSE)
29 {
30  InitMainTrans();
31 }
32 
33 ////////////////////////////////////////////////////////////////////////////////
34 /// Paint this object. Only direct rendering is supported.
35 
36 void TEvePlot3D::Paint(Option_t* )
37 {
38  PaintStandard(this);
39 }