Revision 22dce9d0e0b523a684c36390e773099384daca00 authored by Fons Rademakers on 07 September 2006, 09:27:25 UTC, committed by Fons Rademakers on 07 September 2006, 09:27:25 UTC
TPacketizer.cxx:
  - Fix problem with object used after deletion (in print statement)

TProofServ.cxx:
- Send "start building" notification message before starting the build
  (shows that something is happening ...)

TXNetFile.cxx, TFileMerger.cxx
- Make creation of missing path parts optional (Andreas' suggestion):
  this can be set via the env "XNet.Mkpath" or on the fly adding "mkpath=1"
  to the options ("mkpath=0" switches it 'off' if XNet.Mkpath sets if to 'on').


git-svn-id: http://root.cern.ch/svn/root/trunk@16217 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent d133225
Raw File
TGLSphere.h
// @(#)root/gl:$Name:  $:$Id: TGLSphere.h $
// Author:  Timur Pocheptsov  03/08/2004
// NOTE: This code moved from obsoleted TGLSceneObject.h / .cxx - see these
// attic files for previous CVS history

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

#ifndef ROOT_TGLSphere
#define ROOT_TGLSphere

#ifndef ROOT_TGLLogicalShape
#include "TGLLogicalShape.h"
#endif

class TBuffer3DSphere;
/*
#include <utility>

#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_Gtypes
#include "Gtypes.h"
#endif
#ifndef ROOT_CsgOps
#include "CsgOps.h"
#endif
#ifndef ROOT_TGLUtil
#include "TGLUtil.h"
#endif

class TBuffer3D;
class TBuffer3DTube;
*/
class TGLSphere : public TGLLogicalShape 
{
private:
   Double_t fRadius; // Sphere radius

protected:
   void DirectDraw(const TGLDrawFlags & flags) const;  

public:
   TGLSphere(const TBuffer3DSphere &buffer);

   virtual ELODAxes SupportedLODAxes() const { return kLODAxesAll; }
   ClassDef(TGLSphere,0) // a spherical logical shape
};

#endif
back to top