ROOT  6.06/09
Reference Guide
Functions | Variables
TGX11.cxx File Reference
#include "TROOT.h"
#include "TColor.h"
#include "TGX11.h"
#include "TPoint.h"
#include "TMath.h"
#include "TStorage.h"
#include "TStyle.h"
#include "TExMap.h"
#include "TEnv.h"
#include "TString.h"
#include "TObjString.h"
#include "TObjArray.h"
#include "RStipples.h"
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>
#include <X11/cursorfont.h>
#include <X11/keysym.h>
#include <X11/xpm.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <unistd.h>
+ Include dependency graph for TGX11.cxx:

Go to the source code of this file.

Functions

float XRotVersion (char *, int)
 Return version/copyright information. More...
 
void XRotSetMagnification (float)
 Set the font magnification factor for all subsequent operations. More...
 
void XRotSetBoundingBoxPad (int)
 Set the padding used when calculating bounding boxes. More...
 
int XRotDrawString (Display *, XFontStruct *, float, Drawable, GC, int, int, char *)
 A front end to XRotPaintAlignedString: -no alignment, no background. More...
 
int XRotDrawImageString (Display *, XFontStruct *, float, Drawable, GC, int, int, char *)
 A front end to XRotPaintAlignedString: -no alignment, paints background. More...
 
int XRotDrawAlignedString (Display *, XFontStruct *, float, Drawable, GC, int, int, char *, int)
 A front end to XRotPaintAlignedString: -does alignment, no background. More...
 
int XRotDrawAlignedImageString (Display *, XFontStruct *, float, Drawable, GC, int, int, char *, int)
 A front end to XRotPaintAlignedString: -does alignment, paints background. More...
 
XPoint * XRotTextExtents (Display *, XFontStruct *, float, int, int, char *, int)
 Calculate the bounding box some text will have when painted. More...
 
 ClassImp (TGX11) TGX11
 Default constructor. More...
 
static Int_t DummyX11ErrorHandler (Display *, XErrorEvent *)
 Dummy error handler for X11. Used by FindUsableVisual(). More...
 
int GIFquantize (UInt_t width, UInt_t height, Int_t *ncol, Byte_t *red, Byte_t *green, Byte_t *blue, Byte_t *outputBuf, Byte_t *outputCmap)
 
long GIFencode (int Width, int Height, Int_t Ncol, Byte_t R[], Byte_t G[], Byte_t B[], Byte_t ScLine[], void(*get_scline)(int, int, Byte_t *), void(*pb)(Byte_t))
 
int GIFdecode (Byte_t *gifArr, Byte_t *pixArr, int *Width, int *Height, int *Ncols, Byte_t *R, Byte_t *G, Byte_t *B)
 
int GIFinfo (Byte_t *gifArr, int *Width, int *Height, int *Ncols)
 
static void GetPixel (int y, int width, Byte_t *scline)
 Get pixels in line y and put in array scline. More...
 
static void PutByte (Byte_t b)
 Put byte b in output stream. More...
 

Variables

static XWindow_t * gCws
 
static XWindow_t * gTws
 
const Int_t kBIGGEST_RGB_VALUE = 65535
 
const int kMAXGC = 7
 
static GC gGClist [kMAXGC]
 
static GC * gGCline = &gGClist[0]
 
static GC * gGCmark = &gGClist[1]
 
static GC * gGCfill = &gGClist[2]
 
static GC * gGCtext = &gGClist[3]
 
static GC * gGCinvt = &gGClist[4]
 
static GC * gGCdash = &gGClist[5]
 
static GC * gGCpxmp = &gGClist[6]
 
static GC gGCecho
 
static Int_t gFillHollow
 
static Pixmap gFillPattern = 0
 
const Int_t kMAXFONT = 4
 
struct {
   XFontStruct *   id
 
   char   name [80]
 
gFont [kMAXFONT]
 
static XFontStruct * gTextFont
 
static Int_t gCurrentFontNumber = 0
 
const Int_t kMAXMK = 100
 
struct {
   int   type
 
   int   n
 
   XPoint   xy [kMAXMK]
 
gMarker
 
static int gLineWidth = 0
 
static int gLineStyle = LineSolid
 
static int gCapStyle = CapButt
 
static int gJoinStyle = JoinMiter
 
static char gDashList [10]
 
static int gDashLength = 0
 
static int gDashOffset = 0
 
static int gDashSize = 0
 
static ULong_t gMouseMask
 
static ULong_t gKeybdMask
 
const char null_cursor_bits []
 
static Cursor gNullCursor = 0
 
static FILE * gOut
 
static XImage * gXimage = 0
 

Function Documentation

ClassImp ( TGX11  )

Default constructor.

Definition at line 163 of file TGX11.cxx.

static Int_t DummyX11ErrorHandler ( Display *  ,
XErrorEvent *   
)
static

Dummy error handler for X11. Used by FindUsableVisual().

Definition at line 834 of file TGX11.cxx.

Referenced by TGX11::FindUsableVisual().

static void GetPixel ( int  y,
int  width,
Byte_t scline 
)
static

Get pixels in line y and put in array scline.

Definition at line 3055 of file TGX11.cxx.

int GIFdecode ( Byte_t gifArr,
Byte_t pixArr,
int *  Width,
int *  Height,
int *  Ncols,
Byte_t R,
Byte_t G,
Byte_t B 
)

Definition at line 149 of file gifdecode.c.

Referenced by TGX11::ReadGIF().

long GIFencode ( int  Width,
int  Height,
Int_t  Ncol,
Byte_t  R[],
Byte_t  G[],
Byte_t  B[],
Byte_t  ScLine[],
void(*)(int, int, Byte_t *)  get_scline,
void(*)(Byte_t pb 
)

Referenced by TGX11::WriteGIF().

int GIFinfo ( Byte_t gifArr,
int *  Width,
int *  Height,
int *  Ncols 
)

Definition at line 80 of file gifdecode.c.

Referenced by TGX11::ReadGIF().

int GIFquantize ( UInt_t  width,
UInt_t  height,
Int_t ncol,
Byte_t red,
Byte_t green,
Byte_t blue,
Byte_t outputBuf,
Byte_t outputCmap 
)
static void PutByte ( Byte_t  b)
static

Put byte b in output stream.

Definition at line 3064 of file TGX11.cxx.

Referenced by TGX11::WriteGIF().

int XRotDrawAlignedImageString ( Display *  ,
XFontStruct *  ,
float  ,
Drawable  ,
GC  ,
int  ,
int  ,
char *  ,
int   
)

A front end to XRotPaintAlignedString: -does alignment, paints background.

Definition at line 325 of file Rotated.cxx.

Referenced by TGX11::DrawText().

int XRotDrawAlignedString ( Display *  ,
XFontStruct *  ,
float  ,
Drawable  ,
GC  ,
int  ,
int  ,
char *  ,
int   
)

A front end to XRotPaintAlignedString: -does alignment, no background.

Definition at line 314 of file Rotated.cxx.

Referenced by TGX11::DrawText().

int XRotDrawImageString ( Display *  ,
XFontStruct *  ,
float  ,
Drawable  ,
GC  ,
int  ,
int  ,
char *   
)

A front end to XRotPaintAlignedString: -no alignment, paints background.

Definition at line 303 of file Rotated.cxx.

int XRotDrawString ( Display *  ,
XFontStruct *  ,
float  ,
Drawable  ,
GC  ,
int  ,
int  ,
char *   
)

A front end to XRotPaintAlignedString: -no alignment, no background.

Definition at line 292 of file Rotated.cxx.

void XRotSetBoundingBoxPad ( int  )

Set the padding used when calculating bounding boxes.

Definition at line 257 of file Rotated.cxx.

void XRotSetMagnification ( float  )

Set the font magnification factor for all subsequent operations.

Definition at line 248 of file Rotated.cxx.

Referenced by TGX11::DrawText(), and TGX11::GetTextExtent().

XPoint* XRotTextExtents ( Display *  ,
XFontStruct *  ,
float  ,
int  ,
int  ,
char *  ,
int   
)

Calculate the bounding box some text will have when painted.

Definition at line 1350 of file Rotated.cxx.

Referenced by TGX11::GetTextExtent().

float XRotVersion ( char *  ,
int   
)

Return version/copyright information.

Definition at line 238 of file Rotated.cxx.

Variable Documentation

int gCapStyle = CapButt
static

Definition at line 130 of file TGX11.cxx.

Referenced by TGX11::SetLineType(), and TGX11::SetLineWidth().

Int_t gCurrentFontNumber = 0
static

Definition at line 113 of file TGX11.cxx.

Referenced by TGX11::OpenDisplay(), and TGX11::SetTextFont().

XWindow_t* gCws
static
int gDashLength = 0
static

Definition at line 133 of file TGX11.cxx.

Referenced by TGX11::DrawPolyLine(), TGWin32::DrawPolyLine(), and TGX11::SetLineType().

char gDashList[10]
static

Definition at line 132 of file TGX11.cxx.

Referenced by TGX11::DrawLine(), TGX11::DrawPolyLine(), and TGX11::SetLineType().

int gDashOffset = 0
static

Definition at line 134 of file TGX11.cxx.

Referenced by TGX11::DrawLine(), TGX11::DrawPolyLine(), and TGX11::SetLineType().

int gDashSize = 0
static
Int_t gFillHollow
static

Definition at line 100 of file TGX11.cxx.

Referenced by TGX11::DrawFillArea(), and TGX11::SetFillStyleIndex().

Pixmap gFillPattern = 0
static

Definition at line 101 of file TGX11.cxx.

Referenced by TGX11::SetFillColor(), and TGX11::SetFillStyleIndex().

struct { ... } gFont[kMAXFONT]
GC* gGCdash = &gGClist[5]
static
GC gGCecho
static

Definition at line 98 of file TGX11.cxx.

Referenced by TGX11::OpenDisplay(), and TGX11::RequestLocator().

GC* gGCfill = &gGClist[2]
static
GC* gGCinvt = &gGClist[4]
static
GC* gGCline = &gGClist[0]
static
GC gGClist[kMAXGC]
static
GC* gGCmark = &gGClist[1]
static

Definition at line 91 of file TGX11.cxx.

Referenced by TGX11::DrawPolyMarker(), and TGX11::SetMarkerColor().

GC* gGCpxmp = &gGClist[6]
static
GC* gGCtext = &gGClist[3]
static
int gJoinStyle = JoinMiter
static

Definition at line 131 of file TGX11.cxx.

Referenced by TGX11::SetLineType(), and TGX11::SetLineWidth().

ULong_t gKeybdMask
static
Initial value:
= ButtonPressMask | KeyPressMask |
EnterWindowMask | LeaveWindowMask

Definition at line 144 of file TGX11.cxx.

Referenced by TGX11::RequestString(), and TGX11::SetInput().

int gLineStyle = LineSolid
static
int gLineWidth = 0
static

Definition at line 128 of file TGX11.cxx.

Referenced by TGX11::SetLineType(), and TGX11::SetLineWidth().

struct { ... } gMarker
ULong_t gMouseMask
static
Initial value:
= ButtonPressMask | ButtonReleaseMask |
EnterWindowMask | LeaveWindowMask |
PointerMotionMask | KeyPressMask |
KeyReleaseMask

Definition at line 140 of file TGX11.cxx.

Referenced by TGX11::RequestLocator(), and TGX11::SetInput().

Cursor gNullCursor = 0
static

Definition at line 154 of file TGX11.cxx.

Referenced by TGX11::OpenDisplay(), and TGX11::RequestLocator().

FILE* gOut
static

Definition at line 3040 of file TGX11.cxx.

Referenced by PutByte(), and TGX11::WriteGIF().

XFontStruct* gTextFont
static
XWindow_t* gTws
static
XImage* gXimage = 0
static

Definition at line 3041 of file TGX11.cxx.

Referenced by GetPixel(), and TGX11::WriteGIF().

XFontStruct* id

Definition at line 108 of file TGX11.cxx.

Referenced by cppyy.Template::__repr__(), TClassTable::Add(), TGPopupMenu::AddEntry(), TGHtml::AddSelectOptions(), TGeoPhysicalNode::Align(), apply_bigskip(), TTree::BronchExec(), TGeoVoxelFinder::BuildVoxelLimits(), TProofServ::CatMotd(), TEveCaloLegoGL::Cell2D_t::Cell2D_t(), TGeoChecker::CheckOverlaps(), TGeoChecker::CheckOverlapsBySampling(), ClassImp(), TGFileBrowser::Clicked(), ROOT::MacOSX::X11::CompareViewsToLower(), ROOT::MacOSX::X11::CompareViewsToRaise(), XrdROOTMgr::Config(), TGeoShapeAssembly::Contains(), TDocOutput::CopyHtmlFile(), TGLFBO::CreateAndAttachColorTexture(), TGLFBO::CreateAndAttachRenderBuffer(), TStreamerInfoActions::TActionSequence::CreateSubSequence(), RooMsgService::deleteStream(), TXSocket::DisconnectSession(), TGeoTrd1::Divide(), TGeoTrd2::Divide(), TGeoTube::Divide(), TGeoSphere::Divide(), TGeoCone::Divide(), TGeoPcon::Divide(), TGeoPgon::Divide(), TGeoTubeSeg::Divide(), TGeoConeSeg::Divide(), TEveParamListEditor::DoBoolUpdate(), TEveParamListEditor::DoFloatUpdate(), TEveParamListEditor::DoIntUpdate(), TGFileBrowser::DoubleClicked(), TGListBox::DoubleClicked(), TGeoVoxelFinder::Efficiency(), TGPopupMenu::EndMenu(), XrdProofdProofServ::ExportBuf(), TMD5::FileChecksum(), TGeoNode::FillIdArray(), TGButtonGroup::Find(), TGuiBldDragManager::FindCompositeFrame(), TGeoParallelWorld::FindNode(), TListOfEnums::Get(), TListOfFunctionTemplates::Get(), TListOfDataMembers::Get(), TListOfFunctions::Get(), TGToolBar::GetButton(), TStreamerInfo::GetCheckSum(), TClass::GetCheckSum(), TGMdiMainFrame::GetDecorFrame(), TStreamerInfo::GetElem(), TStreamerInfo::GetElementOffset(), TGListBox::GetEntry(), TFTP::GetFile(), XrdProofdAux::GetIDFromPath(), TStreamerInfo::GetLength(), TGeoManager::GetMaterialIndex(), TStreamerInfo::GetMethod(), TStreamerInfo::GetNewType(), TKDTree< Index, Value >::GetNodeAxis(), TGeoNodeCache::GetNodeId(), TKDTree< Index, Value >::GetNodeValue(), TStreamerInfo::GetOffset(), TGeoVolume::GetOptimalVoxels(), TApplication::GetOptions(), TGeoManager::GetParentTrackOfId(), TNetXNGSystem::GetPathInfo(), TXNetSystem::GetPathInfo(), TFTP::GetPathInfo(), TGLBContainer::GetPos(), TDocMacroDirective::GetResult(), TGLBContainer::GetSelection(), XrdProofdClient::GetServObj(), TArrowEditor::GetShapeEntry(), TFile::GetSize(), TPie::GetSlice(), RooMsgService::getStream(), RooMsgService::getStreamStatus(), TThread::GetThread(), TGeoManager::GetTrackIndex(), TGeoManager::GetTrackOfId(), TStreamerInfo::GetType(), TGWin32::GetWindowAttributes(), TGeoMCGeometry::Gsvolu(), TRootContextMenu::HandleButton(), TGPopupMenu::HandleButton(), TMessageHandler::HandleMessage(), TGuiBldDragManager::InEditable(), TDecompSparse::InitPivot_sub1(), TDecompSparse::InitPivot_sub2(), TDecompSparse::InitPivot_sub3(), TGButtonGroup::Insert(), TClassEdit::InsertStd(), TSystemFile::IsDirectory(), TSystemDirectory::IsItDirectory(), TDocOutput::IsModified(), IsParentOfGrab(), TGWin32::LowerWindow(), TGWin32::MapRaised(), TTreeViewer::MapTree(), TGWin32::MapWindow(), TMinuit::mnhess(), TMinuit::mnmatu(), TMinuit::mnset(), TGeoChecker::NChecksPerVolume(), Rgl::ObjectIDToColor(), TSessionFrame::OnBtnDownClicked(), TSessionFrame::OnBtnRemoveClicked(), TSessionQueryFrame::OnBtnSubmit(), TSessionFrame::OnBtnUpClicked(), TFile::OpenFromCache(), THistPainter::PaintLego(), TEveElement::PaintStandard(), TMessageHandler::Print(), TGeoVoxelFinder::Print(), TFTP::PutFile(), TGX11::PutImage(), TGWin32::PutImage(), TGWin32::QueryPointer(), TGWin32::RaiseWindow(), TXMLFile::ReadFromFile(), TGLBContainer::RemoveEntry(), rr_register_ctf1_fcn(), rr_register_ctf2_fcn(), TGeoShapeAssembly::Safety(), TGeoParallelWorld::Safety(), TGeoNavigator::Safety(), TGeoNavigator::SearchNode(), TGLBContainer::Select(), TGComboBox::Selected(), TGListBox::Selected(), TApplicationRemote::SendFile(), TProof::SendFile(), TGMdiMainFrame::SetCurrent(), TGMdiFrameList::SetFrameId(), TGeoMedium::SetId(), TVirtualGeoTrack::SetId(), TSecContext::SetID(), TVolumePosition::SetId(), TGeoShape::SetId(), XrdProofdProofServ::SetID(), TGWin32::SetInputFocus(), TProofDesc::SetRemoteId(), TXSocket::SetSessionID(), XrdProofdProofServ::SetSrvType(), RooMsgService::setStreamStatus(), TTimer::SetTimerID(), TGWin32::SetUserThreadId(), TFile::ShrinkCacheFileDir(), TGeoVoxelFinder::SortAll(), TGL5DDataSetEditor::SurfaceSelected(), TBranchElement::TBranchElement(), TBranchSTL::TBranchSTL(), TFileSet::TFileSet(), TGColorPalette::TGColorPalette(), TGColorPick::TGColorPick(), TGComboBox::TGComboBox(), TGListBox::TGListBox(), TGRegionWithId::TGRegionWithId(), TGTextEntry::TGTextEntry(), TGWindow::TGWindow(), THbookTree::THbookTree(), TLeafElement::TLeafElement(), TParallelCoordVar::TParallelCoordVar(), TSecContext::TSecContext(), TVirtualGeoTrack::TVirtualGeoTrack(), TXNetSystem::Unlink(), TGFileBrowser::Update(), TGWin32::Warp(), XpdObjectQ::XpdObjectQ(), and XrdClientID::XrdClientID().

const Int_t kBIGGEST_RGB_VALUE = 65535
const Int_t kMAXFONT = 4

Definition at line 106 of file TGX11.cxx.

Referenced by TGX11::OpenDisplay(), and TGX11::SetTextFont().

const int kMAXGC = 7
const Int_t kMAXMK = 100

Definition at line 118 of file TGX11.cxx.

Referenced by TGX11::SetMarkerType(), and TGWin32::SetMarkerType().

int n

Definition at line 121 of file TGX11.cxx.

Referenced by TGX11::DrawPolyLine(), TGX11::DrawPolyMarker(), and TGX11::PutImage().

char name[80]

Definition at line 109 of file TGX11.cxx.

Referenced by TGX11::OpenDisplay(), and TGX11::SetTextFont().

const char null_cursor_bits[]
Initial value:
= {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}

Definition at line 150 of file TGX11.cxx.

Referenced by TGX11::OpenDisplay().

int type

Definition at line 120 of file TGX11.cxx.

Referenced by cppyy.Template::__call__(), ROOT.ModuleFacade::__getattr2(), cppyy._ns_meta::__getattr__(), ROOT.ModuleFacade::__setattr2(), cppyy::_AddressOf(), cppyy::_CreateScopeProxy(), cppyy::_LookupCppEntity(), TProofServ::AcceptResults(), TResponseTable::AddElement(), TMVA::QuickMVAProbEstimator::AddEvent(), TGFileBrowser::AddRemoteFile(), TMVA::DataSetInfo::AddSpectator(), TMVA::DataSetInfo::AddTarget(), RooThresholdCategory::addThreshold(), TAlienJDL::AddToPackages(), TGMimeTypes::AddType(), ROOT::Internal::TTreeProxyGenerator::AnalyzeElement(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldBranch(), ROOT::Internal::TTreeProxyGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeReaderGenerator::AnalyzeOldLeaf(), ROOT::Internal::TTreeProxyGenerator::AnalyzeTree(), ROOT::Internal::TTreeReaderGenerator::AnalyzeTree(), TFile::AsyncOpen(), TMVA::VariableTransformBase::AttachXMLTo(), TServerSocket::Authenticate(), TTreeFormula::BranchHasMethod(), XrdProofdNetMgr::Broadcast(), TApplicationRemote::Broadcast(), RooSimPdfBuilder::buildPdf(), TMVA::BinarySearchTree::CalcStatistics(), RooStats::HypoTestInverterResult::CalculateEstimatedError(), TMVA::MethodMLP::CalculateEstimator(), TCling::CheckClassInfo(), TGX11::CheckEvent(), TGWin32::CheckEvent(), TApplicationRemote::CheckFile(), ClassImp(), ROOT::cleanup(), XrdProofdAdmin::CleanupSessions(), closeEnough(), TApplicationRemote::CollectInput(), TStreamerInfo::CompareContent(), RooAbsCategory::copyCache(), TProofBenchDataSet::CopyFiles(), TStructViewer::CountMembers(), TMVA::VariableTransformBase::CountVariableTypes(), TTreeSQL::CreateBranches(), TMVA::BinarySearchTree::CreateFromXML(), TMVA::DecisionTree::CreateFromXML(), RooAbsCategory::createFundamental(), THnBase::CreateHnAny(), RooStats::HistFactory::ConfigParser::CreateMeasurementFromDriverNode(), TDocOutput::CreateTypeIndex(), DefaultErrorHandler(), TProofBenchRunCPU::DeleteParameters(), TProofBenchRunDataRead::DeleteParameters(), TCling::DeleteVariable(), TTabCom::DetermineClass(), TRootContextMenu::Dialog(), TQCanvasMenu::Dialog(), XrdProofdManager::DoDirectiveDataSetSrc(), TEveTrackPropagatorSubEditor::DoFitPM(), XrdProofConn::DoHandShake(), TEveTrackPropagatorSubEditor::DoRnrPM(), TGeoTrack::Draw(), TGFont::DrawCharsExp(), drr_parse_ret_type(), TDataSetIter::Du(), TGLFaceSet::EnforceTriangles(), ROOT::Fit::BinData::Error(), TApplicationServer::ErrorHandler(), TProofServ::ErrorHandler(), RooStats::RatioOfProfiledLikelihoodsTestStat::Evaluate(), TVirtualPerfStats::EventType(), XrdProofdAdmin::Exec(), TCling::Execute(), RooSimWSTool::executeBuild(), ROOT::Fit::FillData(), TProofPlayerRemote::Finalize(), TTreeFormula::FindLeafForExpression(), findName(), HFit::Fit(), TClingClassInfo::FullName(), RScanner::FuncParameterList(), RScanner::FuncParameters(), Functions(), RooStats::HistFactory::GetChannelEstimateSummaries(), TStreamerInfo::GetCheckSum(), TClass::GetCheckSum(), TGLClipSet::GetClipType(), TVirtualBranchBrowsable::GetCollectionContainedType(), ROOT::Fit::GetDataType(), TBranchElement::GetExpectedType(), RScanner::GetFunctionPrototype(), SelectionRules::GetFunctionPrototype(), TUnixSystem::GetHostByName(), TWinNTSystem::GetHostByName(), TProofResourcesStatic::GetInfoType(), TMVA::VariableTransformBase::GetInput(), TMVA::TMVAGlob::GetInputVariablesDir(), TTreeFormula::GetLeafWithDatamember(), TLDAPAttribute::GetMod(), TFormLeafInfo::GetObjectAddress(), TGeoNodeMatrix::GetOptimalVoxels(), TRootDialog::GetParameters(), TDocParser::GetSourceInfo(), TMySQLServer::GetTableInfo(), TMVA::VariableNormalizeTransform::GetTransformationStrings(), TMVA::VariableDecorrTransform::GetTransformationStrings(), TFile::GetType(), TTable::GetTypeName(), TWinNTSystem::GetVolumes(), gl2psAddPolyPrimitive(), gl2psAddText(), gl2psDrawPixels(), gl2psSplitPrimitive(), gl2psTestSplitPrimitive(), TProofServ::HandleCache(), TProofServ::HandleDataSets(), TGDNDManager::HandleDNDEnter(), TXProofServ::HandleInput(), TProof::HandleInputMessage(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TGTextView::HandleSelectionRequest(), TGTextEntry::HandleSelectionRequest(), TApplicationServer::HandleSocketInput(), TProofServ::HandleSubmerger(), TProof::HandleSubmerger(), TProofServ::HandleWorkerLists(), TBranchClones::Init(), RooSimultaneous::initialize(), RooAbsTestStatistic::initSimMode(), InputType(), ROOT::Math::IntegratorMultiDim::IntegratorMultiDim(), ROOT::Math::IntegratorOneDim::IntegratorOneDim(), interpolate(), ROOT::isfunction(), ROOT::ismethod(), RooAbsCategory::isSignType(), TBaseClass::IsSTLContainer(), Krb5Authenticate(), ROOT::Fit::BinData::LogTransform(), TDSetElement::Lookup(), RooAbsCategory::lookupType(), main(), ROOT::Math::rowOffsetsUtils::make(), TTable::MakeExpression(), TMVA::VariableGaussTransform::MakeFunction(), TMVA::VariableTransformBase::MakeFunction(), TMVA::RuleEnsemble::MakeLinearTerms(), RooStats::HypoTestInverterPlot::MakePlot(), TMVA::RuleFit::MakeVisHists(), matrixOperations(), matrixOperations_do(), TGeoToOCC::OCC_SimpleShape(), TImageDump::Open(), TArchiveFile::Open(), TFile::Open(), RooDataProjBinding::operator()(), TMVA::MsgLogger::operator<<(), RooAbsCategoryLValue::operator=(), ROOT::Internal::TBranchProxyClassDescriptor::OutputDecl(), TGeoTrack::Paint(), TGeoTrack::PaintCollect(), TMVA::paracoor(), TTreeFormula::ParseWithLeaf(), TFileMerger::PartialMerge(), TProofMgr::Ping(), pingXproofdAt(), pingXrootdAt(), TTable::piterator::piterator(), TGHtml::PopStyleStack(), XrdProofdPipe::Post(), RooAbsCategory::printMultiline(), TMVA::VariableNormalizeTransform::PrintTransformation(), TSelHandleDataSet::Process(), XrdProofdAdmin::Process(), XrdProofdManager::Process(), ROOT::TSchemaRule::ProcessDeclaration(), TApplicationServer::ProcessLine(), TXSocket::ProcessUnsolicitedMsg(), TProcPool::ProcTree(), RooStats::RatioOfProfiledLikelihoodsTestStat::ProfiledLikelihood(), RooDataSet::read(), TXProofMgr::ReadBuffer(), TMVA::VariableInfo::ReadFromXML(), TDataSetManager::ReadGroupConfig(), TMVA::VariableGaussTransform::ReadTransformationFromStream(), TMVA::MethodTMlpANN::ReadWeightsFromStream(), TMVA::MethodKNN::ReadWeightsFromStream(), TMVA::MethodTMlpANN::ReadWeightsFromXML(), TTreeFormula::RegisterDimensions(), TProofBenchDataSet::ReleaseCache(), TProofBenchDataSet::RemoveFiles(), ResolveTypedefProcessType(), RooSimultaneous::RooSimultaneous(), TMVA::rulevisCorr(), TMVA::rulevisHists(), XrdProofdNetMgr::Send(), TProof::SendDataSetStatus(), TXSocket::SendInterrupt(), TProofServ::SendResults(), TXSocket::SendUrgent(), ROOT::Math::DistSamplerOptions::SetAlgorithm(), TMVA::MethodBase::SetAnalysisType(), TChainElement::SetBaddressType(), TGProgressBar::SetBarType(), RooAbsCategoryLValue::setBin(), TH1::SetBinErrorOption(), TTree::SetBranchAddress(), TGLPlotCoordinates::SetCoordType(), TTVLVEntry::SetCutType(), ROOT::Math::IntegratorOneDimOptions::SetDefaultIntegrator(), ROOT::Math::IntegratorMultiDimOptions::SetDefaultIntegrator(), TGeoMatrix::SetDefaultName(), TGProgressBar::SetFillType(), TPythia6Decayer::SetForceDecay(), RooMCIntegrator::setGenType(), RooSuperCategory::setIndex(), RooCategory::setIndex(), RooSuperCategory::setLabel(), RooCategory::setLabel(), TTreeCache::SetLearnPrefill(), TGX11::SetMarkerType(), TGWin32::SetMarkerType(), ROOT::Math::MinimizerOptions::SetMinimizerAlgorithm(), RooMinimizer::setMinimizerType(), ROOT::Math::MinimizerOptions::SetMinimizerType(), TStructNode::SetNodeType(), TMVA::VariableTransformBase::SetOutput(), TEveProjectionManager::SetProjection(), XrdProofdAdmin::SetROOTVersion(), ROOT::TSchemaRule::SetRuleType(), ROOT::Math::DistSamplerOptions::SetSampler(), TStructNode::SetScaleBy(), TMVA::Results::SetTreeType(), TControlBarButton::SetType(), TImageDump::SetType(), TVirtualBranchBrowsable::SetType(), RooStats::MetropolisHastings::SetType(), ROOT::Math::GSLRngWrapper::SetType(), ROOT::Math::GSLQRngWrapper::SetType(), ROOT::Math::GSLMultiRootFinder::SetType(), ROOT::Math::GSLMCIntegrator::SetType(), TGeoIterator::SetType(), TPerfStats::SimpleEvent(), ROOT::Math::GSLMultiRootFinder::Solve(), ROOT::Internal::TSchemaRuleProcessor::SplitDeclaration(), stressTMath(), RooRealIntegral::sum(), ROOT::Internal::TBranchProxyClassDescriptor::TBranchProxyClassDescriptor(), TClingClassInfo::TClingClassInfo(), TClingLookupHelper__ExistingTypeCheck(), testNormCross(), testQuantiles(), testUserFunc(), TGFileItem::TGFileItem(), TGHProgressBar::TGHProgressBar(), TGVProgressBar::TGVProgressBar(), TLeafElement::TLeafElement(), TMultiDimFit::TMultiDimFit(), TMultiLayerPerceptron::TMultiLayerPerceptron(), TPrimary::TPrimary(), TMVA::MethodTMlpANN::Train(), TH1::TransformHisto(), TStructNode::TStructNode(), TAlien::Type(), TFormLeafInfo::Update(), and TCling::UpdateClassInfoWithDecl().

XPoint xy[kMAXMK]