ROOT  6.06/09
Reference Guide
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Attributes | Static Private Attributes | Friends | List of all members
TObject Class Reference

Mother of all ROOT objects.

The TObject class provides default behaviour and protocol for all objects in the ROOT system. It provides protocol for object I/O, error handling, sorting, inspection, printing, drawing, etc. Every object which inherits from TObject can be stored in the ROOT collection classes.

TObject's bits can be used as flags, bits 0 - 13 and 24-31 are reserved as global bits while bits 14 - 23 can be used in different class hierarchies (watch out for overlaps).

Definition at line 58 of file TObject.h.

Public Types

enum  EStatusBits {
  kCanDelete = BIT(0), kMustCleanup = BIT(3), kObjInCanvas = BIT(3), kIsReferenced = BIT(4),
  kHasUUID = BIT(5), kCannotPick = BIT(6), kNoContextMenu = BIT(8), kInvalidObject = BIT(13)
}
 
enum  { kIsOnHeap = 0x01000000, kNotDeleted = 0x02000000, kZombie = 0x04000000, kBitMask = 0x00ffffff }
 
enum  { kSingleKey = BIT(0), kOverwrite = BIT(1), kWriteDelete = BIT(2) }
 

Public Member Functions

 TObject ()
 
 TObject (const TObject &object)
 TObject copy ctor. More...
 
TObjectoperator= (const TObject &rhs)
 TObject assignment operator. More...
 
virtual ~TObject ()
 TObject destructor. More...
 
virtual void AppendPad (Option_t *option="")
 Append graphics object to current pad. More...
 
virtual void Browse (TBrowser *b)
 Browse object. May be overridden for another default action. More...
 
virtual const char * ClassName () const
 Returns name of class to which the object belongs. More...
 
virtual void Clear (Option_t *="")
 
virtual TObjectClone (const char *newname="") const
 Make a clone of an object using the Streamer facility. More...
 
virtual Int_t Compare (const TObject *obj) const
 Compare abstract method. More...
 
virtual void Copy (TObject &object) const
 Copy this to obj. More...
 
virtual void Delete (Option_t *option="")
 Delete this object. More...
 
virtual Int_t DistancetoPrimitive (Int_t px, Int_t py)
 Computes distance from point (px,py) to the object. More...
 
virtual void Draw (Option_t *option="")
 Default Draw method for all objects. More...
 
virtual void DrawClass () const
 Draw class inheritance tree of the class to which this object belongs. More...
 
virtual TObjectDrawClone (Option_t *option="") const
 Draw a clone of this object in the current pad. More...
 
virtual void Dump () const
 Dump contents of object on stdout. More...
 
virtual void Execute (const char *method, const char *params, Int_t *error=0)
 Execute method on this object with the given parameter string, e.g. More...
 
virtual void Execute (TMethod *method, TObjArray *params, Int_t *error=0)
 Execute method on this object with parameters stored in the TObjArray. More...
 
virtual void ExecuteEvent (Int_t event, Int_t px, Int_t py)
 Execute action corresponding to an event at (px,py). More...
 
virtual TObjectFindObject (const char *name) const
 Must be redefined in derived classes. More...
 
virtual TObjectFindObject (const TObject *obj) const
 Must be redefined in derived classes. More...
 
virtual Option_tGetDrawOption () const
 Get option used by the graphics system to draw this object. More...
 
virtual UInt_t GetUniqueID () const
 Return the unique object id. More...
 
virtual const char * GetName () const
 Returns name of object. More...
 
virtual const char * GetIconName () const
 Returns mime type name of object. More...
 
virtual Option_tGetOption () const
 
virtual char * GetObjectInfo (Int_t px, Int_t py) const
 Returns string containing info about the object at position (px,py). More...
 
virtual const char * GetTitle () const
 Returns title of object. More...
 
virtual Bool_t HandleTimer (TTimer *timer)
 Execute action in response of a timer timing out. More...
 
virtual ULong_t Hash () const
 Return hash value for this object. More...
 
virtual Bool_t InheritsFrom (const char *classname) const
 Returns kTRUE if object inherits from class "classname". More...
 
virtual Bool_t InheritsFrom (const TClass *cl) const
 Returns kTRUE if object inherits from TClass cl. More...
 
virtual void Inspect () const
 Dump contents of this object in a graphics canvas. More...
 
virtual Bool_t IsFolder () const
 Returns kTRUE in case object contains browsable objects (like containers or lists of other objects). More...
 
virtual Bool_t IsEqual (const TObject *obj) const
 Default equal comparison (objects are equal if they have the same address in memory). More...
 
virtual Bool_t IsSortable () const
 
Bool_t IsOnHeap () const
 
Bool_t IsZombie () const
 
virtual Bool_t Notify ()
 This method must be overridden to handle object notification. More...
 
virtual void ls (Option_t *option="") const
 The ls function lists the contents of a class on stdout. More...
 
virtual void Paint (Option_t *option="")
 This method must be overridden if a class wants to paint itself. More...
 
virtual void Pop ()
 Pop on object drawn in a pad to the top of the display list. More...
 
virtual void Print (Option_t *option="") const
 This method must be overridden when a class wants to print itself. More...
 
virtual Int_t Read (const char *name)
 Read contents of object with specified name from the current directory. More...
 
virtual void RecursiveRemove (TObject *obj)
 Recursively remove this object from a list. More...
 
virtual void SaveAs (const char *filename="", Option_t *option="") const
 Save this object in the file specified by filename. More...
 
virtual void SavePrimitive (std::ostream &out, Option_t *option="")
 Save a primitive as a C++ statement(s) on output stream "out". More...
 
virtual void SetDrawOption (Option_t *option="")
 Set drawing option for object. More...
 
virtual void SetUniqueID (UInt_t uid)
 Set the unique object id. More...
 
virtual void UseCurrentStyle ()
 Set current style settings in this object This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked. More...
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0)
 Write this object to the current directory. More...
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0) const
 Write this object to the current directory. More...
 
voidoperator new (size_t sz)
 
voidoperator new[] (size_t sz)
 
voidoperator new (size_t sz, void *vp)
 
voidoperator new[] (size_t sz, void *vp)
 
void operator delete (void *ptr)
 Operator delete. More...
 
void operator delete[] (void *ptr)
 Operator delete []. More...
 
void SetBit (UInt_t f, Bool_t set)
 Set or unset the user status bits as specified in f. More...
 
void SetBit (UInt_t f)
 
void ResetBit (UInt_t f)
 
Bool_t TestBit (UInt_t f) const
 
Int_t TestBits (UInt_t f) const
 
void InvertBit (UInt_t f)
 
virtual void Info (const char *method, const char *msgfmt,...) const
 Issue info message. More...
 
virtual void Warning (const char *method, const char *msgfmt,...) const
 Issue warning message. More...
 
virtual void Error (const char *method, const char *msgfmt,...) const
 Issue error message. More...
 
virtual void SysError (const char *method, const char *msgfmt,...) const
 Issue system error message. More...
 
virtual void Fatal (const char *method, const char *msgfmt,...) const
 Issue fatal error message. More...
 
void AbstractMethod (const char *method) const
 Use this method to implement an "abstract" method that you don't want to leave purely abstract. More...
 
void MayNotUse (const char *method) const
 Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary). More...
 
void Obsolete (const char *method, const char *asOfVers, const char *removedFromVers) const
 Use this method to declare a method obsolete. More...
 

Static Public Member Functions

static Long_t GetDtorOnly ()
 Return destructor only flag. More...
 
static void SetDtorOnly (void *obj)
 Set destructor only flag. More...
 
static Bool_t GetObjectStat ()
 Get status of object stat flag. More...
 
static void SetObjectStat (Bool_t stat)
 Turn on/off tracking of objects in the TObjectTable. More...
 

Protected Member Functions

void MakeZombie ()
 
virtual void DoError (int level, const char *location, const char *fmt, va_list va) const
 Interface to ErrorHandler (protected). More...
 

Private Attributes

UInt_t fUniqueID
 
UInt_t fBits
 

Static Private Attributes

static Long_t fgDtorOnly = 0
 
static Bool_t fgObjectStat = kTRUE
 

Friends

class TClonesArray
 

#include <TObject.h>

Inherited by Memstat::TMemStatMng, PyROOT::TMemoryRegulator, RooAbsCollection, RooAbsIntegrator, RooCatType, RooCFunction1Ref< VO, VI >, RooCFunction2Ref< VO, VI1, VI2 >, RooCFunction3Ref< VO, VI1, VI2, VI3 >, RooCFunction4Ref< VO, VI1, VI2, VI3, VI4 >, RooCmdConfig, RooExpensiveObjectCache, RooGrid, RooHashTable, RooLinkedList, RooMinimizer, RooMinuit, RooMsgService, RooNameSet, RooNumGenConfig, RooNumGenFactory, RooNumIntConfig, RooNumIntFactory, RooSetPair, RooSharedProperties, RooSharedPropertiesList, RooSimPdfBuilder, RooStats::AcceptanceRegion, RooStats::HistFactory::EstimateSummary, RooStats::HistFactory::HistoToWorkspaceFactory, RooStats::HistFactory::HistoToWorkspaceFactoryFast, RooStats::MetropolisHastings, RooStats::ProposalFunction, RooStats::ProposalHelper, RooStats::SamplingSummary, RooStats::SamplingSummaryLookup, ROOT::Detail::TSchemaRuleSet, ROOT::Internal::TNamedBranchProxy, ROOT::Internal::TTreeReaderDescriptor, ROOT::R::TRDataFrame, ROOT::R::TRFunctionExport, ROOT::R::TRFunctionImport, ROOT::R::TRInterface, ROOT::R::TRObject, ROOT::TSchemaRule, RooThreshEntry, RooWorkspace::CodeRepo, TAFS, TAliEnFind, TApplication, TArchiveFile, TArchiveMember, TASPaletteEditor::PaintPalette, TAuthenticate, TBinomialEfficiencyFitter, TBits, TBonjourBrowser, TBonjourRecord, TBonjourRegistrar, TBonjourResolver, TBox, TBuffer, TBuffer3D, TClassDocInfo, TClassGenerator, TClassMenuItem, TClassTable, TCollection, TCondition, TConditionImp, TCondor, TCondorSlave, TConfidenceLevel, TDataSetIter, TDataSetManager, TDecayChannel, TDecompBase, TDictAttributeMap, TDimensionInfo, TDNDData, TDocMethodWrapper, TDocOutput, TDocParser, TDrawFeedback, TEllipse, TEntryListBlock, TEnv, TEnvRec, TEveCluster, TEveElementObjectPtr, TEveFrameBox, TEveGeoNode, TEveGridStepper, TEveHit, TEveMCRecCrossRef, TEventIter, TEveRecCascade, TEveRecKink, TEveRecTrackT< TT >, TEveRecTrackT< Float_t >, TEveRecV0, TEveRGBAPalette, TEveTrans, TEveVSD, TExMap, TFeldmanCousins, TFileCacheRead, TFileCacheWrite, TFileMerger, TFilePrefetch, TFoam, TFoamCell, TFoamIntegrand, TFoamMaxwt, TFoamVect, TFormLeafInfo, TFPBlock, TFractionFitter, TFree, TFTP, TGClient, TGDMLParse, TGDMLRefl, TGDMLWrite, TGDNDManager, TGedFrame::TGedSubFrame, TGedTabInfo, TGenPhaseSpace, TGeoBatemanSol, TGeoBoolNode, TGeoBranchArray, TGeoBuilder, TGeoCacheState, TGeoChecker, TGeoDecayChannel, TGeoElementTable, TGeoExtension, TGeoGlobalMagField, TGeoHelix, TGeoIteratorPlugin, TGeoNavigator, TGeoNodeCache, TGeoPatternFinder, TGeoPolygon, TGeoTabManager, TGeoToStep, TGeoVoxelFinder, TGFrameElement, TGGC, TGHtmlElement, TGHtmlImage, TGHtmlLayoutContext, TGHtmlUri, TGIdleHandler, TGItemContext, TGLAutoRotator, TGLayoutHints, TGLayoutManager, TGLCamera, TGLLightSet, TGLPShapeObj, TGMainFrame::TGMapKey, TGMenuEntry, TGMime, TGMimeTypes, TGObject, TGPicture, TGPicturePool, TGraph2DPainter, TGraphEdge, TGraphStruct, TGRectMap, TGRegion, TGrid, TGridCollection, TGridJDL, TGridJob, TGTextEditCommand, TGTextLayout, TGUnknownWindowHandler, TGWin32CallBackObject, TH2PolyBin, THLimitsFinder, THnIter, THnSparseArrayChunk, THostAuth, THtml, THtml::TFileSysEntry, THtml::THelperBase, THttpCallArg, TIconBoxThumb, TImagePalette, TImagePlugin, TInetAddress, TJSONStackObj, TKDTree< Index, Value >, TKDTreeBinning, TKSocket, TLDAPEntry, TLDAPResult, TLDAPServer, TLegendEntry, TLimitDataSource, TLine, TLockFile, TLorentzRotation, TLorentzVector, TMapFile, TMarker, TMarker3DBox, TMatrixTBase< Element >, TMatrixTLazy< Element >, TMatrixTSymLazy< Element >, TMCParticle, TMCVerbose, TMemStat, TMemStatShow, TMergerInfo, TMethodCall, TMLPAnalyzer, TMonitor, TMultiLayerPerceptron, TMutexImp, TMVA::Configurable, TMVA::DataSetInfo, TMVA::MsgLogger, TMVA::OptionBase, TMVA::PDEFoam, TMVA::PDEFoamCell, TMVA::PDEFoamDensityBase, TMVA::PDEFoamKernelBase, TMVA::PDEFoamVect, TMVA::RootFinder, TMVA::TNeuron, TMVA::TSynapse, TMVA::VariableTransformBase, TNamed, TNDArray, TObjectRefSpy, TObjectSpy, TObjectTable, TObjString, TOptionListItem, TOutputListSelectorDataMap, TPackageDescription, TPacketizer::TFileNode, TPacketizer::TFileStat, TPacketizerAdaptive::TFileNode, TPacketizerAdaptive::TFileStat, TPacketizerFile::TIterObj, TPainter3dAlgorithms, TPair< A, B >, TParameter< AParamType >, TParameter< Long64_t >, TParticle, TPBHandleDSType, TPBHistType, TPBReadType, TPerfEvent, TPluginHandler, TPluginManager, TPoints3DABC, TPolyLine, TPolyLine3D, TPolyMarker, TPolyMarker3D, TPrimary, TProofBench, TProofBenchDataSet, TProofBenchRun, TProofNodeInfo, TProofNodes, TProofPerfAnalysis::TWrkEntry, TProofProgressInfo, TProofProgressStatus, TProofResources, TPyDispatcher, TQpDataBase, TQpLinSolverBase, TQpProbBase, TQpResidual, TQpSolverBase, TQpVar, TQSlot, TQuaternion, TQueryDescription, TQueryResultManager, TRealData, TRecEvent, TRecorder, TRecWinPair, TRef, TRefTable, TRobustEstimator, TRolke, TRootBrowserHistoryCursor, TRootSnifferStore, TRotation, TRWLock, TS3HTTPRequest, TSecContext, TSecContextCleanup, TSelector, TSemaphore, TSessionDescription, TSlave, TSlaveInfo, TSpectrum2Transform, TSpider, TSplinePoly, TSPlot, TSQLClassColumnInfo, TSQLClassInfo, TSqlCmdsBuffer, TSQLColumnData, TSQLObjectData, TSQLObjectDataPool, TSQLObjectInfo, TSqlRawBuffer, TSqlRegistry, TSQLResult, TSQLRow, TSQLServer, TSQLStatement, TSQLStructure, TSQLTableData, TStatistic, TStatsFeedback, TStopwatch, TStreamerInfoActions::TActionSequence, TStreamerInfoActions::TConfiguredAction, TStructNode, TStructViewer, TSVDUnfold, TSynapse, TSysEvtHandler, TTableIter, TTableMap, TThreadImp, TTreeDrawArgsParser, TTreeFormulaManager, TTreeReader, TTVRecord, TTVSession, TUnfold, TUri, TUrl, TVector2, TVector3, TVectorT< Element >, TVectorT< Double_t >, TView, TVirtualFFT, TVirtualGeoPainter, TVirtualGeoTrack, TVirtualGraphPainter, TVirtualHistPainter, TVirtualMCDecayer, TVirtualMCStack, TVirtualMutex, TVirtualPacketizer, TVirtualPacketizer::TVirtualSlaveStat, TVirtualPad, TVirtualPerfStats, TVirtualProofPlayer, TVirtualTreePlayer, TVirtualViewer3D, TVolumePosition, TXMLAttr, TXMLDocument, TXMLEngine, TXMLNode, TXMLParser, TXMLPlayer, and TXMLStackObj.

Member Enumeration Documentation

anonymous enum
Enumerator
kIsOnHeap 
kNotDeleted 
kZombie 
kBitMask 

Definition at line 88 of file TObject.h.

anonymous enum
Enumerator
kSingleKey 
kOverwrite 
kWriteDelete 

Definition at line 96 of file TObject.h.

Enumerator
kCanDelete 
kMustCleanup 
kObjInCanvas 
kIsReferenced 
kHasUUID 
kCannotPick 
kNoContextMenu 
kInvalidObject 

Definition at line 76 of file TObject.h.

Constructor & Destructor Documentation

TObject::TObject ( )
TObject::TObject ( const TObject object)

TObject copy ctor.

Definition at line 79 of file TObject.cxx.

TObject::~TObject ( )
virtual

TObject destructor.

Removes object from all canvases and object browsers if observer bit is on and remove from the global object table.

Definition at line 140 of file TObject.cxx.

Member Function Documentation

void TObject::AbstractMethod ( const char *  method) const

Use this method to implement an "abstract" method that you don't want to leave purely abstract.

Definition at line 960 of file TObject.cxx.

Referenced by TSystem::Abort(), TSystem::AcceptConnection(), TH1::AddBinContent(), TSystem::AddDynamicPath(), TSystem::AnnounceTcpService(), TSystem::AnnounceUdpService(), TSystem::AnnounceUnixService(), TSystem::ChangeDirectory(), TSystem::Chmod(), TSecContext::CleanupSecContext(), TDataSetManager::ClearCache(), TSystem::CloseConnection(), TSystem::Closelog(), TSystem::ClosePipe(), Compare(), TAlienSystem::CopyFile(), TSystem::CopyFile(), TMatrixTBase< Element >::Determinant(), TSystem::DispatchOneEvent(), TSystem::Exec(), TDataSetManager::ExistsDataSet(), TSystem::Exit(), TSystem::FindDynamicLibrary(), TAlienSystem::FindFile(), TSystem::FindFile(), TSystem::FreeDirectory(), TSystem::GetCpuInfo(), TDataSetManager::GetDataSet(), TDataSetManager::GetDataSets(), TSystem::GetDirEntry(), TSystem::GetDynamicPath(), TAlienSystem::GetEffectiveGid(), TSystem::GetEffectiveGid(), TAlienSystem::GetEffectiveUid(), TSystem::GetEffectiveUid(), TSystem::Getenv(), TSystem::GetFPEMask(), TAlienSystem::GetFsInfo(), TSystem::GetFsInfo(), TAlienSystem::GetGid(), TSystem::GetGid(), TAlienSystem::GetGroupInfo(), TSystem::GetGroupInfo(), TSystem::GetHostByName(), TSystem::GetMemInfo(), TVirtualPacketizer::GetNextPacket(), TSystem::GetPathInfo(), TSystem::GetPeerName(), TSystem::GetPid(), TSystem::GetProcInfo(), TSystem::GetServiceByName(), TSystem::GetServiceByPort(), TSystem::GetSockName(), TSystem::GetSockOpt(), TSystem::GetSysInfo(), TAlienSystem::GetUid(), TSystem::GetUid(), TAlienSystem::GetUserInfo(), TSystem::GetUserInfo(), TSystem::IgnoreSignal(), TAlienSystem::Link(), TSystem::Link(), TSystem::ListSymbols(), TSystem::MakeDirectory(), TDataSetManager::NotifyUpdate(), TSystem::OpenConnection(), TSystem::OpenDirectory(), TSystem::Openlog(), TSystem::OpenPipe(), TSystem::PrependPathName(), TSystem::RecvBuf(), TSystem::RecvRaw(), TSystem::RedirectOutput(), TDataSetManager::RegisterDataSet(), TDataSetManager::RemoveDataSet(), TSystem::Rename(), TSystem::ResetSignal(), TSystem::ResetSignals(), TDataSetManager::ScanDataSet(), TSystem::Select(), TSystem::SendBuf(), TSystem::SendRaw(), TSystem::SetDynamicPath(), TSystem::Setenv(), TSystem::SetFPEMask(), TShape::SetPoints(), TSystem::SetSockOpt(), TDataSetManager::ShowCache(), TProofMgr::ShowWorkers(), TSystem::Sleep(), TSystem::StackTrace(), TSQLServer::Statement(), TAlienSystem::Symlink(), TSystem::Symlink(), TSystem::Syslog(), TSystem::TempDirectory(), TSystem::TempFileName(), TAlienSystem::Umask(), TSystem::Umask(), TSystem::Unlink(), TH1::UpdateBinContent(), TDataSetManager::UpdateUsedSpace(), TAlienSystem::Utime(), and TSystem::Utime().

void TObject::AppendPad ( Option_t option = "")
virtual

Append graphics object to current pad.

In case no current pad is set yet, create a default canvas with the name "c1".

Definition at line 164 of file TObject.cxx.

Referenced by TMVA::correlations(), TMVA::correlationsMultiClass(), TFrame::Draw(), TPavesText::Draw(), TDiamond::Draw(), TPaveLabel::Draw(), TWbox::Draw(), TButton::Draw(), TVolumeView::Draw(), TSpline::Draw(), TPolyLineShape::Draw(), TLegend::Draw(), TArrow::Draw(), TPolyMarker::Draw(), TParallelCoordRange::Draw(), TPaveText::Draw(), TGraphPolar::Draw(), TMarker::Draw(), TMultiGraph::Draw(), TPave::Draw(), TGraphStruct::Draw(), TPolyMarker3D::Draw(), TPolyLine3D::Draw(), THStack::Draw(), TPolyLine::Draw(), TGeoTrack::Draw(), TEllipse::Draw(), TColorWheel::Draw(), TPie::Draw(), TBox::Draw(), TParallelCoordVar::Draw(), TTreePerfStats::Draw(), TNode::Draw(), THelix::Draw(), TVolume::Draw(), TParallelCoord::Draw(), TF3::Draw(), TF2::Draw(), TSpider::Draw(), TEfficiency::Draw(), TGraph2D::Draw(), TGraph::Draw(), TGraphPolargram::Draw(), Draw(), TEveGeoTopNode::Draw(), TGenerator::Draw(), TH1::Draw(), TF1::Draw(), TArc::DrawArc(), TArrow::DrawArrow(), TGaxis::DrawAxis(), TBox::DrawBox(), TF12::DrawCopy(), TF2::DrawCopy(), TH1::DrawCopy(), TF1::DrawCopy(), TCrown::DrawCrown(), TEllipse::DrawEllipse(), TPaveText::DrawFile(), TGraph::DrawGraph(), TLatex::DrawLatex(), TLine::DrawLine(), TMarker::DrawMarker(), TMathText::DrawMathText(), TGeoPainter::DrawOnly(), TGeoPainter::DrawOverlap(), TPave::DrawPave(), TPaveLabel::DrawPaveLabel(), TPolyLine3D::DrawPolyLine(), TPolyLine::DrawPolyLine(), TPolyMarker::DrawPolyMarker(), TPolyMarker3D::DrawPolyMarker(), TGeoPainter::DrawShape(), TText::DrawText(), TGeoPainter::DrawVolume(), TWbox::DrawWbox(), TGeoManager::Edit(), TMVA::mvas(), TSpider::SetDisplayAverage(), TSpider::SetNx(), TSpider::SetNy(), TSpider::SetSegmentDisplay(), TSlider::TSlider(), TMVA::variables(), and TMVA::variablesMultiClass().

void TObject::Browse ( TBrowser b)
virtual
const char * TObject::ClassName ( ) const
virtual

Returns name of class to which the object belongs.

Definition at line 187 of file TObject.cxx.

Referenced by RooStats::HistFactory::HistFactoryNavigation::_GetAllProducts(), RooStats::HistFactory::HistFactoryNavigation::_GetNodes(), RooAbsCollection::add(), TDSet::Add(), RooAbsCollection::addClone(), TChain::AddFileInfoList(), TProofPlayerRemote::AddOutputObject(), RooAbsCollection::addOwned(), TRootBrowserLite::AddToTree(), TGeoTrack::AnimateTrack(), TCollection::AssertClass(), TSelEventGen::Begin(), RooAbsReal::bindVars(), TTree::Branch(), TTree::BranchOld(), TGuiBldDragManager::BreakLayout(), TRemoteObject::Browse(), TGeoVolume::Browse(), TMVA::DataSetFactory::BuildEventVector(), TPad::BuildLegend(), TTree::ChangeFile(), TGuiBldNameFrame::ChangeSelected(), TGDMLWrite::ChooseObject(), ClassImp(), TApplicationRemote::CollectInput(), TTabCom::Complete(), TStructViewer::CountMembers(), RooTrace::create2(), TGDMLWrite::CreateCommonBoolN(), TQCanvasMenu::CreateDialogTitle(), TContextMenu::CreateDialogTitle(), THnBase::CreateHnAny(), RooAbsReal::createPlotProjection(), RooTrace::destroy2(), TEveWindow::DestroyWindow(), TEveWindow::DestroyWindowAndSlot(), TGeoShapeAssembly::DistFromOutside(), TGeoVolume::Divide(), DoError(), TH2::DoProfile(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH3::DoProjectProfile2D(), TH2::DoQuantiles(), TGuiBldDragManager::DoReplace(), TGuiBldDragManager::DoResize(), TStyleManager::DoSelectCanvas(), TGuiBldDragManager::Drop(), TGuiBldDragManager::DropCanvas(), RooTrace::dump3(), TGeoPainter::EstimateCameraMove(), RooRealIntegral::evaluate(), TRootCanvas::EventInfo(), TGDMLWrite::ExtractVolumes(), TPerfStats::FileOpenEvent(), TPerfStats::FileReadEvent(), TLeafObject::FillBasket(), RooAbsReal::fillDataHist(), RooAbsData::fillHistogram(), RooAbsReal::fillHistogram(), TGeoNavigator::FindNextBoundary(), TGeoNavigator::FindNextBoundaryAndStep(), TGeoNavigator::FindNextDaughterBoundary(), TROOT::FindObjectClassName(), RooAbsGenContext::generate(), RooSimSplitGenContext::generate(), RooEffGenContext::generateEvent(), RooStats::HistFactory::HistFactoryNavigation::GetDataHist(), RooStats::HistFactory::getDataValuesForObservables(), TQueryResult::GetInputObject(), TCollection::GetName(), TGWindow::GetName(), TVolumeView::GetObjectInfo(), TVolumePosition::GetObjectInfo(), TNode::GetObjectInfo(), TVolume::GetObjectInfo(), TFileStager::GetPathName(), TGeoMCGeometry::GetShape(), TFileStager::GetStaged(), RooStats::HistFactory::getStatUncertaintyFromChannel(), RooStats::HistFactory::getSumPdfFromChannel(), TGeoPainter::GetVolumeInfo(), TGuiBldDragManager::GrabFrame(), TProofServ::HandleProcess(), TGuiBldDragManager::HighlightCompositeFrame(), TRootBrowserLite::IconBoxAction(), TProofPlayerRemote::Incorporate(), RooGrid::initialize(), RooRealIntegral::initNumIntegrator(), TSQLFile::IsMySQL(), TSQLFile::IsODBC(), TSQLFile::IsOracle(), TProof::LoadPackageOnClient(), RooAbsCategory::lookupType(), TFolder::ls(), TDirectoryFile::ls(), TFile::ls(), TGuiBldDragManager::Menu4Frame(), TSeqCollection::Merge(), TEventList::Merge(), TPolyMarker::Merge(), TPolyLine3D::Merge(), TPolyMarker3D::Merge(), TPolyLine::Merge(), TFileCollection::Merge(), TEntryList::Merge(), TH2::Merge(), TH3::Merge(), TLinearFitter::Merge(), TH1::Merge(), TTree::Merge(), MonitoredTFileInfo(), Obsolete(), TRootContextMenu::OnlineHelp(), TRef::operator=(), TEveElement::PaintStandard(), TGuiBldDragManager::PlaceFrame(), RooAbsData::plotAsymOn(), RooAbsData::plotEffOn(), RooDataHist::plotOn(), RooAbsData::plotOn(), RooAbsReal::plotSanityChecks(), TMVA::TransformationHandler::PlotVariables(), TXNetSystem::Prepare(), TStreamerInfoActions::TConfiguration::Print(), TObjectTable::Print(), TGWindow::Print(), TGFrameElement::Print(), TGeoVolume::Print(), TGFrame::Print(), TCollection::PrintCollectionHeader(), TStreamerInfoActions::TConfiguration::PrintDebug(), RooGrid::printMultiline(), RooPlot::printMultiline(), RooAbsCollection::printMultiline(), printName(), RooStats::HistFactory::HistFactoryNavigation::PrintSampleComponents(), RooPlot::printValue(), TProofPlayerLite::Process(), TProofPlayerRemote::Process(), TProofServ::ProcessNext(), TFitEditor::ProcessTreeInput(), TRootSniffer::ProduceExe(), RooAbsRealLValue::randomize(), TStreamerInfo::ReadBuffer(), TProof::RemoveWorkers(), RooAbsNumGenerator::RooAbsNumGenerator(), RooAcceptReject::RooAcceptReject(), RooGrid::RooGrid(), RooRealIntegral::RooRealIntegral(), RootX11ErrorHandler(), rr_ary_new(), TPaveStats::SavePrimitive(), TH1K::SavePrimitive(), TMacro::SavePrimitive(), TPaletteAxis::SavePrimitive(), TGeoEltu::SavePrimitive(), TGeoHalfSpace::SavePrimitive(), TGeoScaledShape::SavePrimitive(), TPaveText::SavePrimitive(), TGeoTrd1::SavePrimitive(), TGeoTrd2::SavePrimitive(), TGeoCompositeShape::SavePrimitive(), TGeoParaboloid::SavePrimitive(), TGeoPara::SavePrimitive(), TGeoTube::SavePrimitive(), TGeoTorus::SavePrimitive(), TGeoBBox::SavePrimitive(), TGeoSphere::SavePrimitive(), TGeoCone::SavePrimitive(), TGeoPgon::SavePrimitive(), TGeoArb8::SavePrimitive(), TGeoPcon::SavePrimitive(), TGeoHype::SavePrimitive(), TGeoXtru::SavePrimitive(), TH2Poly::SavePrimitive(), TProfile::SavePrimitive(), TEfficiency::SavePrimitive(), TProfile3D::SavePrimitive(), TProfile2D::SavePrimitive(), SavePrimitive(), TGeoTubeSeg::SavePrimitive(), TGeoTrap::SavePrimitive(), TGeoConeSeg::SavePrimitive(), TGeoGtra::SavePrimitive(), TGeoCtub::SavePrimitive(), TH1::SavePrimitive(), TCanvas::SaveSource(), TRootSniffer::ScanCollection(), TGuiBldDragManager::SelectFrame(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TMonaLisaWriter::SendFileCloseEvent(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TSQLMonitoringWriter::SendParameters(), TMonaLisaWriter::SendParameters(), TBranch::SetBufferAddress(), TDSetElement::SetEntryList(), TDSet::SetEntryList(), TGeoPgonEditor::SetModel(), TGeoTranslationEditor::SetModel(), TGeoEltuEditor::SetModel(), TGeoTrd1Editor::SetModel(), TGeoBBoxEditor::SetModel(), TGeoHypeEditor::SetModel(), TGeoTorusEditor::SetModel(), TGeoTrd2Editor::SetModel(), TGeoParaEditor::SetModel(), TGeoMediumEditor::SetModel(), TGeoPconEditor::SetModel(), TGeoTrapEditor::SetModel(), TEveGedNameFrame::SetModel(), TGeoGtraEditor::SetModel(), TGedNameFrame::SetModel(), TGeoRotationEditor::SetModel(), TGeoCombiTransEditor::SetModel(), TGWindow::SetWindowName(), TGeoChecker::ShapeDistances(), TGeoChecker::ShapeNormal(), TGeoChecker::ShapeSafety(), TFitEditor::ShowObjectName(), TFileStager::Stage(), TNetXNGSystem::Stage(), TEveWindowSlot::StopEmbedding(), TGuiBldDragManager::SwitchEditable(), TGuiBldDragManager::SwitchLayout(), TKey::TKey(), TKeySQL::TKeySQL(), TKeyXML::TKeyXML(), TPave::TPave(), TPerfStats::TPerfStats(), TQCommand::TQCommand(), TMapFile::Update(), TProofMgr::UploadFiles(), TStreamerInfo::WriteBufferAux(), TSQLFile::WriteSpecialObject(), RooAbsArg::~RooAbsArg(), TArrowEditor::~TArrowEditor(), and TFunctionParametersDialog::~TFunctionParametersDialog().

virtual void TObject::Clear ( Option_t = "")
inlinevirtual

Reimplemented in TGHtml, TGeoHMatrix, TGeoGenTrans, TGeoCombiTrans, ROOT::v5::TFormula, TLinearFitter, TGeoRotation, TStreamerInfo, TVectorT< Element >, TVectorT< Double_t >, TPad, TFormula, TMatrixTBase< Element >, TMultiDimFit, TCanvas, TBits, TVirtualStreamerInfo, TDirectory, TGTextEntry, TMatrixT< Element >, TMatrixT< Double_t >, TMatrixTSparse< Element >, TMatrixTSparse< Double_t >, TGraph2D, TGTextView, TMatrixTSym< Element >, TMatrixTSym< Double_t >, TProofProgressLog, TGView, TGTextEdit, TFumili, TCollection, TVirtualPad, TListOfEnums, TBtree, TList, TRefTable, TBackCompFitter, RooLinkedList, TRefArray, TTable, TMap, TListOfDataMembers, TProofProgressMemoryPlot, TVirtualFitter, TPrincipal, THashTable, TListOfFunctions, TListOfFunctionTemplates, TOrdCollection, TObjArray, TTask, TMVA::MinuitWrapper, TViewPubDataMembers, TViewPubFunctions, TPaveText, TProcessID, ROOT::TSchemaRule, TClonesArray, TFolder, THashList, TLegend, TEventList, TListOfEnumsWithLock, TBranchRef, TNamed, TDictAttributeMap, and TFitter.

Definition at line 110 of file TObject.h.

Referenced by RooStats::SPlot::AddSWeight(), TClonesArray::Clear(), TListOfFunctions::Clear(), TListOfFunctionTemplates::Clear(), TListOfDataMembers::Clear(), TListOfEnums::Clear(), TCanvas::Clear(), TClonesArray::ConstructedAt(), TListOfFunctionTemplates::Delete(), TListOfFunctions::Delete(), TStructViewerGUI::Draw(), TMVA::MethodKNN::MakeKNN(), TFileMerger::PartialMerge(), TRootCanvas::ProcessMessage(), TStructViewer::Reset(), THnSparse::Reset(), TMVA::MinuitFitter::Run(), TSessionViewer::ShowEnabledPackages(), TSessionViewer::ShowLog(), TSessionViewer::ShowPackages(), and TSessionViewer::ShowStatus().

TObject * TObject::Clone ( const char *  newname = "") const
virtual

Make a clone of an object using the Streamer facility.

If the object derives from TNamed, this function is called by TNamed::Clone. TNamed::Clone uses the optional argument to set a new name to the newly created object.

If the object class has a DirectoryAutoAdd function, it will be called at the end of the function with the parameter gDirectory. This usually means that the object will be appended to the current ROOT directory.

Reimplemented in TClass, TH1, TStreamerInfo, TMinuit, TImage, TDataSet, TASImage, TMethodCall, TH2Poly, TCollection, RooStats::ModelConfig, RooAbsArg, TMVA::MinuitWrapper, RooDataSet, TMethod, RooDataHist, RooCmdArg, TFunction, TNamed, RooFitResult, RooCatType, RooLinkedList, RooAbsStudy, TFunctionTemplate, RooStudyPackage, RooAbsCollection, RooCategoryProxy, RooAbsBinning, RooFormula, RooRealProxy, RooNameSet, RooMapCatEntry, and RooThreshEntry.

Definition at line 203 of file TObject.cxx.

Referenced by RooStats::HypoTestInverterResult::Add(), RooMinuit::applyCovarianceMatrix(), RooMinimizer::applyCovarianceMatrix(), TProofNodes::Build(), THStack::BuildStack(), ClassImp(), TNamed::Clone(), TCollection::Clone(), TPointSet3D::CopyIds(), RooStats::SamplingDistPlot::Draw(), DrawClone(), TCanvas::DrawClone(), TCanvas::DrawClonePad(), RooExpensiveObjectCache::ExpensiveObject::ExpensiveObject(), TProofPlayerRemote::Finalize(), TLimit::Fluctuate(), RooStats::HypoTestInverterResult::GetExpectedPValueDist(), TAlienCollection::GetGridResult(), TMVA::ROCCalc::GetSignificance(), TProof::HandleInputMessage(), TProofPlayerLite::HandleTimer(), TProofPlayerRemote::HandleTimer(), RooStats::HypoTestInverterResult::HypoTestInverterResult(), TSeqCollection::Merge(), TProofPlayerRemote::MergeFeedback(), TCutG::operator=(), TClonesArray::operator=(), RooStats::HypoTestInverterResult::operator=(), TDictionary::operator=(), RooStudyManager::processBatchOutput(), TMVA::MethodPDEFoam::ReadClonedFoamFromFile(), RooAbsCategory::RooAbsCategory(), RooCmdConfig::RooCmdConfig(), RooGenFitStudy::RooGenFitStudy(), RooWorkspace::RooWorkspace(), RooFitResult::setCovarianceMatrix(), THtml::SetFileDefinition(), THtml::SetModuleDefinition(), THtml::SetPathDefinition(), TClonesArray::TClonesArray(), TEveElementObjectPtr::TEveElementObjectPtr(), and TFractionFitter::TFractionFitter().

Int_t TObject::Compare ( const TObject obj) const
virtual

Compare abstract method.

Must be overridden if a class wants to be able to compare itself with other objects. Must return -1 if this is smaller than obj, 0 if objects are equal and 1 if this is larger than obj.

Reimplemented in RooAbsArg, TSlaveInfo, TDSetElement, TSlave, TGeoBranchArray, TFileInfo, TEnvRec, TParameter< AParamType >, TParameter< Long64_t >, TUrl, TClassDocInfo, TCollection, TGeoOverlap, TPerfEvent, TStructNode, TNamed, RooDouble, TObjString, RooInt, TStructNodeProperty, and RooThreshEntry.

Definition at line 218 of file TObject.cxx.

Referenced by TClonesArray::AbsorbObjects(), TSortedList::Add(), TOrdCollection::BinarySearch(), TObjArray::BinarySearch(), ClassImp(), TBtInnerNode::Found(), TList::LnkCompare(), RooLinkedList::mergesort_impl(), TSeqCollection::ObjCompare(), and TGListTree::Sort().

void TObject::Copy ( TObject object) const
virtual
void TObject::Delete ( Option_t option = "")
virtual
Int_t TObject::DistancetoPrimitive ( Int_t  px,
Int_t  py 
)
virtual

Computes distance from point (px,py) to the object.

This member function must be implemented for each graphics primitive. This default function returns a big number (999999).

Reimplemented in TF1, TH1, TGLViewer, TStyle, TGenerator, TParticle, TGeoConeSeg, TGeoTubeSeg, TGeoVolume, TPad, TGeoShape, TGraph, TASImage, TAxis, TGraph2D, TSpider, TEfficiency, TGraphPolargram, TGeoXtru, TF2, TGLScenePad, TF3, TGeoHype, TGeoNode, TGeoPgon, TGLParametricEquation, TParallelCoord, TGeoOverlap, TVolume, TGeoPcon, TMarker3DBox, TNode, TTreePerfStats, TGeoTorus, TGLHistPainter, TParallelCoordVar, TBox, TColorWheel, TGeoTube, TGeoTrack, TEllipse, TPie, THistPainter, TPrimary, TLine, TPolyLine, TPCON, TGeoCone, TGraphNode, TTUBE, TPolyLine3D, THStack, TGeoParaboloid, TGeoSphere, TPolyMarker3D, TSPHE, TText, TGraphEdge, TAxis3D, TVolumePosition, TGeoCompositeShape, TPave, TGeoBBox, TMultiGraph, TMarker, TFileDrawMap, TCurlyLine, TPolyMarker, TParallelCoordRange, TSpline, TPaletteAxis, TPoints3D, TPolyLineShape, TVolumeView, TGeoScaledShape, TGeoHalfSpace, TGLTH3Composition, TGeoShapeAssembly, TTUBS, TGL5DDataSet, TPointsArray3D, TGeoEltu, TPieSlice, TCurlyArc, TDiamond, TBRIK, TVirtualHistPainter, TCrown, TPoints3DABC, TXTRU, and TTablePoints.

Definition at line 245 of file TObject.cxx.

Referenced by TVolume::DistancetoNodePrimitive(), TVolumeView::DistancetoPrimitive(), THistPainter::DistancetoPrimitive(), TNode::DistancetoPrimitive(), TGraphPainter::DistancetoPrimitiveHelper(), and TPad::Pick().

void TObject::DoError ( int  level,
const char *  location,
const char *  fmt,
va_list  va 
) const
protectedvirtual

Interface to ErrorHandler (protected).

Reimplemented in TTreeViewer, TXSocket, TThread, TXSlave, and TSlaveLite.

Definition at line 879 of file TObject.cxx.

Referenced by TTreeViewer::DoError(), Error(), Fatal(), Info(), SysError(), and Warning().

void TObject::Draw ( Option_t option = "")
virtual

Default Draw method for all objects.

Reimplemented in TClass, TTree, TF1, TGeoBatemanSol, TGListTree, TDSet, TH1, TMatrixTBase< Element >, TPad, TVectorT< Element >, TVectorT< Double_t >, TFile, TGenerator, TCanvas, TMultiDimFit, TGeoVolume, TFITSHDU, TDirectory, TGeoShape, TEveGeoTopNode, TMultiLayerPerceptron, TTable, TGraphPolargram, TGraph, TASImage, TGraph2D, TGeoPainter, TEfficiency, RooTreeDataStore, TSpider, TStructViewerGUI, TF2, TF3, TChain, TCollection, TGeoNode, TVirtualPad, TVirtualGeoPainter, TParallelCoord, TEveGeoNode, TGeoParallelWorld, TGeoOverlap, TVolume, RooStats::HypoTestInverterPlot, TGeoPhysicalNode, TGeometry, THelix, TNode, TTreePerfStats, TClassTree, RooStats::HybridPlot, RooStats::SamplingDistPlot, TParallelCoordVar, TBox, TColorWheel, TPie, TGPicture, TGeoTrack, TEllipse, RooAbsData, TPolyLine, TGeoPolygon, TPolyLine3D, THStack, TPolyMarker3D, TVolumePosition, TGraphStruct, TPave, TProofChain, RooPlot, TMultiGraph, TGraphPolar, TMarker, TPaveText, TPolyMarker, TParallelCoordRange, TArrow, TChair, TLegend, TGraphTime, TSpline, TPolyLineShape, TStructViewer, TVolumeView, TButton, TWbox, TGItemContext, TPaveLabel, TDiamond, TNodeDiv, TPavesText, and TFrame.

Definition at line 254 of file TObject.cxx.

Referenced by TParallelCoord::AddVariable(), TApplicationRemote::CollectInput(), TMVA::deviations(), TProofPerfAnalysis::DoDraw(), TProofProgressDialog::DoPlotRateGraph(), TGFileBrowser::DoubleClicked(), RooPlot::Draw(), TGraphStruct::Draw(), RooAbsData::Draw(), RooStats::HypoTestInverterPlot::Draw(), RooStats::LikelihoodIntervalPlot::Draw(), TParallelCoord::Draw(), TCollection::Draw(), TASImage::Draw(), TMultiLayerPerceptron::Draw(), TFITSHDU::Draw(), TGenerator::Draw(), TMVA::draw_activation(), TMVA::DrawCell(), DrawClone(), RooStats::MCMCIntervalPlot::DrawHistInterval(), TMVA::StatDialogMVAEffs::DrawHistograms(), RooStats::MCMCIntervalPlot::DrawKeysPdfInterval(), TMVA::StatDialogBDTReg::DrawNode(), TMVA::StatDialogBDT::DrawNode(), TFileDrawMap::DrawObject(), TTreePlayer::DrawSelect(), TGHtml::DrawTableBgnd(), RooStats::MCMCIntervalPlot::DrawTailFractionInterval(), drawtext(), TGeoManager::DrawTracks(), TQRootCanvas::dropEvent(), TDrawFeedback::Feedback(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TMinuit2TraceObject::Init(), TInspectCanvas::InspectObject(), TCreatePrimitives::Line(), TMinuit2TraceObject::operator()(), TGraphTime::Paint(), TClassTree::PaintClass(), TMVA::TMVAGlob::plot_logo(), TRootSniffer::ProduceImage(), RooStats::HypoTestInverter::RunLimit(), TGraphTime::SaveAnimatedGif(), TParallelCoord::SetCandleChart(), TParallelCoord::SetGlobalScale(), TParallelCoord::SetVertDisplay(), TPad::ShowGuidelines(), TClassTree::ShowHas(), TClassTree::ShowMul(), TSelectorDraw::TakeAction(), TCreatePrimitives::Text(), TFileDrawMap::TFileDrawMap(), TAxis3D::ToggleRulers(), and TAxis3D::ToggleZoom().

void TObject::DrawClass ( ) const
virtual

Draw class inheritance tree of the class to which this object belongs.

If a class B inherits from a class A, description of B is drawn on the right side of description of A. Member functions overridden by B are shown in class A with a blue line crossing-out the corresponding member function. The following picture is the class inheritance tree of class TPaveLabel:

base_object.png

Reimplemented in TGFrame, TSystemDirectory, and TSystemFile.

Definition at line 269 of file TObject.cxx.

TObject * TObject::DrawClone ( Option_t option = "") const
virtual

Draw a clone of this object in the current pad.

Reimplemented in TGFrame, TCanvas, TAxis, TSystemDirectory, and TSystemFile.

Definition at line 277 of file TObject.cxx.

Referenced by TGFileBrowser::DoubleClicked(), and RooStats::LikelihoodIntervalPlot::Draw().

void TObject::Dump ( ) const
virtual

Dump contents of object on stdout.

Using the information in the object dictionary (class TClass) each data member is interpreted. If a data member is a pointer, the pointer value is printed

The following output is the Dump of a TArrow object:

fAngle 0 Arrow opening angle (degrees)
fArrowSize 0.2 Arrow Size
fOption.*fData
fX1 0.1 X of 1st point
fY1 0.15 Y of 1st point
fX2 0.67 X of 2nd point
fY2 0.83 Y of 2nd point
fUniqueID 0 object unique identifier
fBits 50331648 bit field status word
fLineColor 1 line color
fLineStyle 1 line style
fLineWidth 1 line width
fFillColor 19 fill area color
fFillStyle 1001 fill area style

Reimplemented in TClass, TGFrame, TGPack, TCollection, and TSystemFile.

Definition at line 324 of file TObject.cxx.

Referenced by TCollection::Dump(), TClass::Dump(), TFileDrawMap::DumpObject(), TEveElement::DumpSourceObject(), and TFolder::ls().

void TObject::Error ( const char *  method,
const char *  msgfmt,
  ... 
) const
virtual

Issue error message.

Use "location" to specify the method where the error occurred. Accepts standard printf formatting arguments.

Definition at line 918 of file TObject.cxx.

Referenced by TClonesArray::AbsorbObjects(), TPServerSocket::Accept(), TProofServ::AcceptResults(), TRootSniffer::AccessField(), THDFSSystem::AccessPathName(), TAlienSystem::AccessPathName(), TFTP::AccessPathName(), TMapFile::AcquireSemaphore(), TProofNodes::ActivateWorkers(), TSortedList::Add(), TObjectTable::Add(), TVolume::Add(), THStack::Add(), TDataSetIter::Add(), TExMap::Add(), TRefTable::Add(), TFileCollection::Add(), TH2Poly::Add(), TBtree::Add(), TProfile::Add(), TProfile2D::Add(), TProfile3D::Add(), TAlienCollection::Add(), TH1::Add(), TDSet::Add(), TViewPubDataMembers::AddAfter(), TViewPubFunctions::AddAfter(), TOrdCollection::AddAfter(), TObjArray::AddAfter(), TRefArray::AddAfter(), TViewPubDataMembers::AddAt(), TViewPubFunctions::AddAt(), TObjArray::AddAtAndExpand(), TRefArray::AddAtAndExpand(), TBranch::AddBasket(), TViewPubDataMembers::AddBefore(), TViewPubFunctions::AddBefore(), TOrdCollection::AddBefore(), TObjArray::AddBefore(), TRefArray::AddBefore(), THnSparse::AddBinError2(), TTreeCache::AddBranch(), TTree::AddBranchToCache(), TGToolBar::AddButton(), TGeoElementTable::AddElement(), TLegend::AddEntry(), TLDAPServer::AddEntry(), TChain::AddFile(), TFileMerger::AddFile(), TMacOSXSystem::AddFileHandler(), TViewPubDataMembers::AddFirst(), TViewPubFunctions::AddFirst(), TFolder::AddFolder(), TGCanvas::AddFrame(), TGMenuBar::AddFrameBefore(), TDSetElement::AddFriend(), TDSet::AddFriend(), TFileCollection::AddFromFile(), TDSet::AddInput(), TGeoElement::AddIsotope(), TGeoElementTable::AddIsotope(), TViewPubDataMembers::AddLast(), TViewPubFunctions::AddLast(), TGeoBranchArray::AddLevel(), TQueryResultManager::AddLogFile(), TGeoParallelWorld::AddNode(), TGeoVolume::AddNode(), TGeoVolume::AddNodeOffset(), TGeoVolume::AddNodeOverlap(), TObjectTable::AddObj(), TGLScenePad::AddObject(), TProofPlayerRemote::AddOutput(), TProofPlayerRemote::AddOutputObject(), TDocLatexDirective::AddParameter(), TLinearFitter::AddPoint(), Memstat::TMemStatMng::AddPointer(), TPacketizerAdaptive::AddProcessed(), TParallelCoordVar::AddRange(), TTreeResult::AddRow(), TLinearFitter::AddToDesign(), TGeoManager::AddVolume(), TMergerInfo::AddWorker(), TPacketizerUnit::AddWorkers(), TPacketizer::AddWorkers(), TProof::AddWorkers(), TProofOutputFile::AdoptFile(), TViewPubDataMembers::After(), TViewPubFunctions::After(), TDataSetManagerAliEn::AliEnWhereIs(), TGeoPhysicalNode::Align(), TH1::AndersonDarlingTest(), TWinNTSystem::AnnounceTcpService(), TTreeIndex::Append(), TChainIndex::Append(), TApplication::Argv(), ROOT::R::TRObject::As(), TCollection::AssertClass(), TProofOutputFile::AssertDir(), TProof::AssertPath(), TProofPlayer::AssertSelector(), TLinearFitter::AssignData(), TPacketizerUnit::AssignWork(), TFile::AsyncOpen(), TXProofMgr::AttachSession(), TServerSocket::Authenticate(), TSocket::Authenticate(), TAuthenticate::Authenticate(), TAuthenticate::AuthError(), TAuthenticate::AuthExists(), TCling::AutoLoad(), TCling::AutoParseImplRecurse(), TPainter3dAlgorithms::BackBox(), TSpectrum3::Background(), TSpectrum2::Background(), TSpectrum::Background(), TWinNTSystem::BaseName(), TSystem::BaseName(), TViewPubDataMembers::Before(), TViewPubFunctions::Before(), TSelHist::Begin(), TSelEventGen::Begin(), TSelectorDraw::Begin(), TSelEvent::Begin(), TGLScenePad::BeginScene(), TOrdCollection::BinarySearch(), TObjArray::BinarySearch(), TRefArray::BinarySearch(), TLDAPServer::Bind(), TKSocket::BlockRead(), TKSocket::BlockWrite(), TBonjourBrowser::BonjourBrowseReply(), TBonjourRegistrar::BonjourRegisterService(), TBonjourResolver::BonjourResolveReply(), TBonjourRegistrar::BonjourSocketReadyRead(), TBonjourResolver::BonjourSocketReadyRead(), TBonjourBrowser::BonjourSocketReadyRead(), TTree::Branch(), TTreeFormula::BranchHasMethod(), TTree::BranchImp(), TTree::BranchImpRef(), TTree::BranchOld(), TApplicationRemote::Broadcast(), TProof::BroadcastFile(), TApplicationRemote::BroadcastRaw(), TTree::BronchExec(), TVirtualBranchBrowsable::Browse(), TDataSetManagerFile::BrowseDataSets(), TBonjourBrowser::BrowseForServiceType(), TGraph2D::Build(), TStreamerInfo::Build(), TGLScenePad::BuildComposite(), TClass::BuildEmulatedRealData(), TTreePlayer::BuildIndex(), TMultiLayerPerceptron::BuildNetwork(), TStreamerInfo::BuildOld(), TMultiLayerPerceptron::BuildOneHiddenLayer(), TProof::BuildPackage(), TProof::BuildPackageOnClient(), TClass::BuildRealData(), TTableSorter::BuildSorter(), TBranchElement::BuildTitle(), TGButtonGroup::ButtonPressed(), TAlienJob::Cancel(), TGLiteJob::Cancel(), TProofLite::CancelStagingDataSet(), TProof::CancelStagingDataSet(), TFoam::Carver(), TGLite::Cd(), TGeoNavigator::cd(), TGeoNodeCache::CdNode(), TFoam::CellFill(), TF1::CentralMoment(), TF2::CentralMoment2(), TF3::CentralMoment3(), TFTP::ChangeDirectory(), TTree::ChangeFile(), TGToolBar::ChangeIcon(), TFTP::ChangePermission(), TFoam::CheckAll(), TTreeSQL::CheckBranch(), TTree::CheckBranchAddressType(), TBufferFile::CheckByteCount(), TFractionFitter::CheckConsistency(), TBufferFile::CheckCount(), TGeoElementRN::CheckDecays(), TSelectorList::CheckDuplicateName(), TApplicationRemote::CheckFile(), TProof::CheckFile(), TPluginHandler::CheckForExecPlugin(), TGeoManager::CheckGeometryFull(), TAlienCollection::CheckIfOnline(), TKDE::CheckKernelValidity(), TDataSetManagerFile::CheckLocalCache(), TKDE::CheckOptions(), TGeoManager::CheckOverlaps(), TGeoChecker::CheckOverlapsBySampling(), TFractionFitter::CheckParNo(), TWebFile::CheckProxy(), TGTableLayout::CheckSanity(), TGeoChecker::CheckShape(), TGeoShape::CheckShape(), TGeoVolume::CheckShapes(), TDataSetManager::CheckStagedStatus(), TDataSetManagerFile::ChecksumDataSet(), TH1::Chi2TestX(), TGraph::Chisquare(), TH1::Chisquare(), TCondor::Claim(), TCondor::ClaimVM(), TClassDocOutput::Class2Html(), ClassImp(), TBufferJSON::ClassMember(), TBufferXML::ClassMember(), TBufferSQL2::ClassMember(), TPosixThread::CleanUpPop(), TPosixThread::CleanUpPush(), TQueryResultManager::CleanupSession(), TViewPubDataMembers::Clear(), TViewPubFunctions::Clear(), TAuthenticate::ClearAuth(), TDataSetManagerFile::ClearCache(), TProof::ClearData(), TProof::ClearPackage(), TClass::Clone(), TTree::CloneTree(), TSapDBServer::Close(), TAlienFile::Close(), TNetXNGFile::Close(), TMapFile::Close(), TPostScript::Close(), TFTP::Close(), TGeoParallelWorld::CloseGeometry(), TGeoManager::CloseGeometry(), TApplicationRemote::CollectInput(), TPainter3dAlgorithms::ColorFunction(), TEfficiency::Combine(), TSQLFile::Commit(), TPerfEvent::Compare(), TGeoOverlap::Compare(), TSlave::Compare(), TSystem::CompileMacro(), TGeoScaledShape::ComputeBBox(), TGeoPcon::ComputeBBox(), TGeoHype::ComputeBBox(), TGeoXtru::ComputeBBox(), TGeoCtub::ComputeBBox(), TFractionFitter::ComputeChisquareLambda(), TFractionFitter::ComputeFCN(), TH1::ComputeIntegral(), THnBase::ComputeIntegral(), TGeoShapeAssembly::ComputeNormal(), TGeoArb8::ComputeTwist(), TDecompBase::Condition(), TEveCaloData::CellGeom_t::Configure(), TKSocket::Connect(), TXNetSystem::Connect(), TNetFile::ConnectServer(), TEntryListBlock::Contains(), TStopwatch::Continue(), TBackCompFitter::Contour(), TDocOutput::Convert(), THtml::Convert(), TTreeSQL::ConvertTypeName(), TFormula::Copy(), TProofBench::CopyDataSet(), TSelHandleDataSet::CopyFile(), TProofBenchDataSet::CopyFiles(), TDocOutput::CopyHtmlFile(), TProofLite::CopyMacroToCache(), TTable::CopyRows(), TGeoManager::CountLevels(), TXProofMgr::Cp(), TFile::Cp(), TStopwatch::CpuTime(), TFastCgi::Create(), TKey::Create(), TNetFile::Create(), TTable::Create(), TSlave::Create(), TNetSystem::Create(), TVirtualProofPlayer::Create(), TXSocket::Create(), TTreeSQL::CreateBasket(), TGCocoa::CreateBitmap(), TTreeSQL::CreateBranch(), TBasketSQL::CreateBuffer(), TRootCanvas::CreateCanvas(), TDocOutput::CreateClassIndex(), TDocOutput::CreateClassTypeDefs(), TSQLiteServer::CreateDataBase(), TPgSQLServer::CreateDataBase(), TSapDBServer::CreateDataBase(), TGWin32GLManager::CreateDIB(), TGWin32GLManager::CreateGLContext(), TX11GLManager::CreateGLContext(), TX11GLManager::CreateGLPixmap(), TGLEmbeddedViewer::CreateGLWidget(), TGLSAViewer::CreateGLWidget(), TEfficiency::CreateGraph(), TGraphEdge::CreateGVEdge(), TGraphNode::CreateGVNode(), TDocOutput::CreateHierarchy(), TClassDocOutput::CreateHierarchyDot(), THnBase::CreateHist(), TEfficiency::CreateHistogram(), THnBase::CreateHnAny(), TDocLatexDirective::CreateLatex(), TTableDescriptor::CreateLeafList(), TDataSetManagerFile::CreateLsFile(), TDocOutput::CreateModuleIndex(), TGLScenePad::CreateNewLogical(), TGCocoa::CreateOpenGLWindow(), TPacketizerMulti::CreatePacketizer(), TCanvas::CreatePainter(), TGX11::CreatePictureFromData(), TGX11::CreatePictureFromFile(), TGCocoa::CreatePixmap(), TGCocoa::CreatePixmapFromData(), TDocOutput::CreateProductIndex(), TProtoClass::TProtoRealData::CreateRealData(), TProofServLite::CreateServer(), TXProofServ::CreateServer(), TProofServ::CreateServer(), TProofMgrLite::CreateSession(), TProofMgr::CreateSession(), TDocMacroDirective::CreateSubprocessInputFile(), TTreeSQL::CreateTable(), TGeoXtru::CreateThreadData(), TDocOutput::CreateTypeIndex(), TGLWidget::CreateWindow(), TXNetFile::CreateXClient(), TXSocket::CtrlC(), TProtoClass::DataMemberIndex(), TDavixFile::DavixPReadBuffer(), TDavixFile::DavixReadBuffer(), TDavixFile::DavixReadBuffers(), TDavixFile::DavixWriteBuffer(), TDecompChol::Decompose(), TDecompBK::Decompose(), TDecompLU::Decompose(), TDecompQRH::Decompose(), TDecompSVD::Decompose(), TDecompSparse::Decompose(), TDecompLU::DecomposeLUCrout(), TDecompLU::DecomposeLUGauss(), TDocOutput::DecorateEntityBegin(), TDocOutput::DecorateEntityEnd(), TBufferJSON::DecrementLevel(), TTreeFormula::DefineAlternate(), TTreeFormula::DefinedVariable(), TPainter3dAlgorithms::DefineGridLevels(), TGeoXtru::DefinePolygon(), TSQLTableData::DefineSQLName(), TSQLFile::DefineTableName(), TViewPubDataMembers::Delete(), TViewPubFunctions::Delete(), TTree::Delete(), TClass::DeleteArray(), TFTP::DeleteDirectory(), TLDAPServer::DeleteEntry(), TFTP::DeleteFile(), TProofBenchRunCPU::DeleteParameters(), TProofBenchRunDataRead::DeleteParameters(), TCling::DeleteVariable(), TTreeReader::DeregisterValueReader(), TGLEmbeddedViewer::DestroyGLWidget(), TGLSAViewer::DestroyGLWidget(), TClass::Destructor(), TProof::Detach(), TDecompSVD::Diagonalize(), TProof::DisablePackage(), TXMLEngine::DisplayError(), TGLHistPainter::DistancetoPrimitive(), TGeoEltu::Divide(), TGeoShapeAssembly::Divide(), TGeoHalfSpace::Divide(), TGeoScaledShape::Divide(), TGeoTrd1::Divide(), TGeoTrd2::Divide(), TGraphAsymmErrors::Divide(), TGeoCompositeShape::Divide(), TGeoPara::Divide(), TGeoTube::Divide(), TGeoBBox::Divide(), TGeoParaboloid::Divide(), TGeoSphere::Divide(), TGeoCone::Divide(), TGeoPcon::Divide(), TGeoArb8::Divide(), TGeoPgon::Divide(), TGeoHype::Divide(), TProfile::Divide(), TProfile2D::Divide(), TFoam::Divide(), TProfile3D::Divide(), TGeoTubeSeg::Divide(), TGeoTrap::Divide(), TGeoConeSeg::Divide(), TH1::Divide(), THnBase::Divide(), TGeoVolumeMulti::Divide(), TGeoVolumeAssembly::Divide(), TQuaternion::DivideLeft(), TGeoBuilder::Division(), TProofProgressMemoryPlot::DoAveragePlot(), TGeoManagerEditor::DoCreateMaterial(), TGLViewer::DoDraw(), TFormula::DoEval(), TFitEditor::DoFit(), TGLViewer::DoOverlaySelect(), TProofProgressMemoryPlot::DoPlot(), TH2::DoProfile(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH3::DoProjectProfile2D(), TH2::DoQuantiles(), TGLViewer::DoSecondarySelect(), TGLViewer::DoSelect(), TGeoMixtureEditor::DoSelectElement(), TFitEditor::DoSetParameters(), TProof::DownloadPackage(), TProofProgressMemoryPlot::DoWorkerPlot(), TProofChain::Draw(), TASImage::Draw(), TDSet::Draw(), TGQuartz::DrawBox(), TAdvancedGraphicsDialog::DrawConfidenceLevels(), TAdvancedGraphicsDialog::DrawContour(), TProofBench::DrawCPU(), TProofBench::DrawDataSet(), TProofBench::DrawEfficiency(), TPainter3dAlgorithms::DrawFaceGouraudShaded(), TGQuartz::DrawFillArea(), TGQuartz::DrawLine(), TH1::DrawNormalized(), THistPainter::DrawPanel(), TGraphPainter::DrawPanelHelper(), TGeoPainter::DrawPolygon(), TGQuartz::DrawPolyLine(), TGQuartz::DrawPolyMarker(), TSVG::DrawPS(), TTeXDump::DrawPS(), TMultiLayerPerceptron::DrawResult(), TTreePlayer::DrawSelect(), TProofPlayerRemote::DrawSelect(), TProof::DrawSelect(), TGQuartz::DrawText(), TTreeCache::DropBranch(), TTree::DropBranchFromCache(), TSQLiteServer::DropDataBase(), TPgSQLServer::DropDataBase(), TSapDBServer::DropDataBase(), TMultiLayerPerceptron::DumpWeights(), TProof::EnablePackage(), TEntryListBlock::Enter(), TTable::EntryLoop(), TFractionFitter::ErrorAnalysis(), TLinearFitter::Eval(), ROOT::R::TRInterface::Eval(), TLinearFitter::EvalRobust(), TRobustEstimator::Evaluate(), TProofPerfAnalysis::EventDist(), TFractionFitter::ExcludeBin(), TSQLiteServer::Exec(), TMacro::Exec(), TXProofMgr::Exec(), TProof::Exec(), TMethodCall::Execute(), ROOT::R::TRInterface::Execute(), TCling::Execute(), TBackCompFitter::ExecuteCommand(), TGLHistPainter::ExecuteEvent(), TApplication::ExecuteFile(), TTask::ExecuteTask(), TCling::ExecuteWithArgsAndReturn(), TProofLite::ExistsDataSet(), TProof::ExistsDataSet(), TClonesArray::Expand(), TObjArray::Expand(), TExMap::Expand(), TRefArray::Expand(), TClonesArray::ExpandCreate(), TSystem::ExpandFileName(), TFoam::Explore(), TGeoVolume::Export(), TGeoManager::Export(), TGeoElementTable::ExportElementsRN(), TAlienCollection::ExportXML(), TGLCamera::EyeDirection(), TGLCamera::EyePoint(), TDecompSparse::Factor(), TEfficiency::FeldmanCousins(), TVirtualFFT::FFT(), TProofPerfAnalysis::FileDist(), TProofPerfAnalysis::FileProcPlot(), TBranchSTL::Fill(), TH3::Fill(), TH2::Fill(), TTreeSQL::Fill(), TBranchElement::Fill(), TTree::Fill(), TLeafObject::FillBasket(), TProofChain::FillDrawAttributes(), TBranchElement::FillLeavesAssociativeCollectionMember(), TBranchElement::FillLeavesClonesMember(), TBranchElement::FillLeavesCollectionMember(), TBranchElement::FillLeavesCollectionSplitPtrMember(), TBranchElement::FillLeavesCollectionSplitVectorPtrMember(), TBranchElement::FillLeavesMakeClass(), TBranchElement::FillLeavesMember(), TBranchElement::FillLeavesMemberCounter(), TDataSetManagerFile::FillLsDataSet(), TGeoMaterial::FillMaterialEvolution(), TGeoMixture::FillMaterialEvolution(), TDataSetManager::FillMetaData(), TProofBenchRunCPU::FillPerfStatPerfPlots(), TPainter3dAlgorithms::FillPolygon(), TH2::FillRandom(), TH3::FillRandom(), TH1::FillRandom(), TSPlot::FillSWeightsHists(), TProtoClass::FillTClass(), TUnixSystem::FillWithCwd(), TXProofMgr::Find(), TGWin32::FindColor(), TGX11::FindColor(), TProtoClass::FindDataMember(), TDataSetIter::FindDataSet(), TProof::FindDataSets(), TUnixSystem::FindDynamicLibrary(), TWinNTSystem::FindDynamicLibrary(), TExMap::FindElement(), TZIPFile::FindEndHeader(), TFolder::FindFullPathName(), TTreeFormula::FindLeafForExpression(), TPainter3dAlgorithms::FindLevelLines(), TGeoPatternX::FindNextBoundary(), TGeoPatternY::FindNextBoundary(), TGeoPatternZ::FindNextBoundary(), TFolder::FindObject(), TGeometry::FindObject(), TBtree::FindObject(), TROOT::FindObject(), TROOT::FindObjectPathName(), TGeoVolume::FindOverlaps(), TView3D::FindPhiSectors(), TFractionFitter::FindPrediction(), TGTableLayout::FindRowColSizesMultiplyAttached(), TGTableLayout::FindRowColSizesSinglyAttached(), TCastorFile::FindServerAndPath(), TGeoBatemanSol::FindSolution(), TClass::FindStreamerInfoAbstractEmulated(), TView3D::FindThetaSectors(), TProofLite::FindUniqueSlaves(), TProof::FindUniqueSlaves(), TPainter3dAlgorithms::FindVisibleDraw(), TSpline3::FindX(), TSpline5::FindX(), TViewPubDataMembers::First(), TViewPubFunctions::First(), TViewPubDataMembers::FirstLink(), TViewPubFunctions::FirstLink(), TBinomialEfficiencyFitter::Fit(), TMultiDimFit::Fit(), TSpectrumFit::FitAwmi(), TMultiGraph::FitPanel(), TGraph2D::FitPanel(), TGraph::FitPanel(), TH1::FitPanel(), TSpectrumFit::FitStiefel(), TLinearFitter::FixParameter(), TGWin32GLManager::Flush(), TX11GLManager::Flush(), TNetXNGFile::Flush(), TXNetFile::Flush(), TPostScript::FontEmbed(), TGGCPool::ForceFreeGC(), TBufferJSON::ForceWriteInfo(), TBufferJSON::ForceWriteInfoClones(), TProofServ::Fork(), RooStats::HLFactory::fParseLine(), TGFALSystem::FreeDirectory(), THDFSSystem::FreeDirectory(), TRFIOSystem::FreeDirectory(), TXNetSystem::FreeDirectory(), TFTP::FreeDirectory(), TWebSystem::FreeDirectory(), TNetSystem::FreeDirectory(), TASImage::FromPad(), TPainter3dAlgorithms::FrontBox(), TGLCamera::Frustum(), TGLCamera::FrustumCenter(), TGLCamera::FrustumOverlap(), TGLCamera::FrustumPlane(), Memstat::TMemStatMng::generateBTID(), TStreamerInfo::GenerateDeclaration(), TStreamerInfo::GenerateHeaderFile(), TCling::GenerateTClass(), TZIPFile::Get(), TMapFile::Get(), TProofServ::Get(), TZIPFile::Get64(), TAuthenticate::GetAuthMethod(), TClass::GetBaseClassOffsetRecurse(), TBranch::GetBasket(), TOracleStatement::GetBinary(), TH1::GetBinCenter(), TH1::GetBinLowEdge(), TH1::GetBinWidth(), TH1::GetBinWithContent(), TH2::GetBinWithContent2(), TH3::GetBinWithContent3(), TEveParamList::GetBoolParameter(), TNonSplitBrowsable::GetBrowsables(), TBufferJSON::GetBufferDisplacement(), TH1::GetCenter(), TGeoVoxelFinder::GetCheckList(), TClass::GetCheckSum(), TColor::GetColor(), TGClient::GetColorByName(), TColor::GetColorTransparent(), TTreeSQL::GetColumnIndice(), TFITSHDU::GetColumnName(), TSQLiteServer::GetColumns(), TPgSQLServer::GetColumns(), TSapDBServer::GetColumns(), TFitter::GetConfidenceIntervals(), TBackCompFitter::GetConfidenceIntervals(), TLinearFitter::GetConfidenceIntervals(), TGraph2DPainter::GetContourList(), TGraph2D::GetContourList(), TH2::GetCorrelationFactor(), TH3::GetCorrelationFactor(), TH2::GetCovariance(), TH3::GetCovariance(), TFitter::GetCovarianceMatrixElement(), TFumili::GetCovarianceMatrixElement(), TStopwatch::GetCPUTime(), TWinNTSystem::GetCPUTime(), TGCocoa::GetCurrentContext(), TGCocoa::GetCurrentOpenGLContext(), TSQLiteServer::GetDataBases(), TPgSQLServer::GetDataBases(), TSapDBServer::GetDataBases(), TCling::GetDataMemberAtAddr(), TCling::GetDataMemberWithValue(), TDataSetManagerFile::GetDataSet(), TProofBenchRunDataRead::GetDataSet(), TDataSetManagerAliEn::GetDataSet(), TProof::GetDataSet(), TProof::GetDataSetQuota(), TDataSetManagerFile::GetDataSets(), TProof::GetDataSets(), TVirtualGeoTrack::GetDaughterId(), TDirectoryFile::GetDirectory(), TDirectory::GetDirectory(), TDavixSystem::GetDirEntry(), TNetXNGSystem::GetDirEntry(), TGFALSystem::GetDirEntry(), THDFSSystem::GetDirEntry(), TRFIOSystem::GetDirEntry(), TXNetSystem::GetDirEntry(), TFTP::GetDirEntry(), TWebSystem::GetDirEntry(), TNetSystem::GetDirEntry(), TGeoMixture::GetElement(), TGeoElement::GetElementTable(), TDSetElement::GetEntries(), TVirtualPacketizer::GetEntries(), TDSet::GetEntries(), TBranchSTL::GetEntry(), TLegend::GetEntry(), TEntryListFromFile::GetEntry(), TBranch::GetEntry(), TBranch::GetEntryExport(), TAlienCollection::GetEntryList(), TCling::GetEnum(), TBranchSTL::GetExpectedType(), TBranchObject::GetExpectedType(), TBranch::GetExpectedType(), TBranchElement::GetExpectedType(), TFormula::GetExpFormula(), TSapDBRow::GetField(), TMySQLResult::GetFieldCount(), TSQLiteResult::GetFieldCount(), TPgSQLResult::GetFieldCount(), TSapDBResult::GetFieldCount(), TTreeResult::GetFieldCount(), TMySQLRow::GetFieldLength(), TSQLiteRow::GetFieldLength(), TPgSQLRow::GetFieldLength(), TSapDBRow::GetFieldLength(), TMySQLResult::GetFieldName(), TSQLiteResult::GetFieldName(), TPgSQLResult::GetFieldName(), TSapDBResult::GetFieldName(), TFTP::GetFile(), TXProofMgr::GetFile(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TLinearFitter::GetFitSample(), TGeoTrd1::GetFittingBox(), TGeoPara::GetFittingBox(), TGeoTrd2::GetFittingBox(), TGeoBBox::GetFittingBox(), TGeoArb8::GetFittingBox(), TEveParamList::GetFloatParameter(), TGFontPool::GetFont(), TGClient::GetFontByName(), TGFont::GetFontMetrics(), TSystem::GetFromPipe(), TWebFile::GetFromWeb(), TWebFile::GetFromWeb10(), TGX11::GetGC(), TGWin32::GetGC(), TGeoManager::GetGeomPainter(), TROOT::GetGlobalFunction(), TROOT::GetGlobalFunctionWithPrototype(), TVolumeView::GetGlobalRange(), TProofBench::GetGraph(), TCling::Getgvp(), TFoamCell::GetHcub(), TWebFile::GetHead(), TGClient::GetHilite(), TF1::GetHistogram(), TUnixSystem::GetHostByName(), TWinNTSystem::GetHostByName(), TFoamCell::GetHSize(), TWebFile::GetHunk(), TRobustEstimator::GetHyperplane(), TCondor::GetImage(), TBufferJSON::GetInfo(), TUnfold::GetInputInverseEmatrix(), TXSocket::GetInterrupt(), TEveParamList::GetIntParameter(), TGeoRotation::GetInverse(), TRootSniffer::GetItem(), TH1::GetKurtosis(), TBufferJSON::GetLastProcessID(), TLeaf::GetLeafCounter(), TLeaf::GetLen(), TAlienCollection::GetLFN(), TWebFile::GetLine(), TFormula::GetLinearPart(), TProof::GetListOfSlaveInfos(), TFormLeafInfoCollectionSize::GetLocalValuePointer(), TH1::GetLowEdge(), TGeoShapeAssembly::GetMakeRuntimeShape(), TGeoEltu::GetMakeRuntimeShape(), TGeoScaledShape::GetMakeRuntimeShape(), TGeoTrd1::GetMakeRuntimeShape(), TGeoPara::GetMakeRuntimeShape(), TGeoTrd2::GetMakeRuntimeShape(), TGeoTorus::GetMakeRuntimeShape(), TGeoBBox::GetMakeRuntimeShape(), TGeoCone::GetMakeRuntimeShape(), TGeoHype::GetMakeRuntimeShape(), TGeoTubeSeg::GetMakeRuntimeShape(), TGeoTrap::GetMakeRuntimeShape(), TGeoConeSeg::GetMakeRuntimeShape(), TGeoGtra::GetMakeRuntimeShape(), TGeoCtub::GetMakeRuntimeShape(), TBufferJSON::GetMapCount(), TBufferJSON::GetMappedObject(), TDecompChol::GetMatrix(), TDecompLU::GetMatrix(), TDecompSVD::GetMatrix(), TFractionFitter::GetMCPrediction(), TClass::GetMethod(), TLeafObject::GetMethodCall(), TClass::GetMethodWithPrototype(), TF1::GetMinMaxNDim(), TXProofMgr::GetMssUrl(), TTreeFormulaManager::GetNdata(), TTree::GetNewlineValue(), TGeoVoxelFinder::GetNextCandidates(), TEventIterUnit::GetNextEvent(), TEventIterObj::GetNextEvent(), TEventIterTree::GetNextEvent(), TPacketizerMulti::GetNextPacket(), TPacketizerFile::GetNextPacket(), TPacketizerUnit::GetNextPacket(), TPacketizer::GetNextPacket(), TPacketizerAdaptive::GetNextPacket(), TEventIterUnit::GetNextPacket(), TEventIterObj::GetNextPacket(), TEventIterTree::GetNextPacket(), TProofServ::GetNextPacket(), TProofLite::GetNumberOfWorkers(), TFormLeafInfo::GetObjectAddress(), TCling::GetObjectAddress(), TViewPubDataMembers::GetObjectRef(), TViewPubFunctions::GetObjectRef(), TRefArray::GetObjectUID(), TXTRU::GetOutlinePointX(), TXTRU::GetOutlinePointY(), THtml::GetOutputDir(), TGLiteJob::GetOutputSandbox(), TCling::Getp2f2funcname(), TTreeDrawArgsParser::GetParameter(), TFormula::GetParameter(), TLinearFitter::GetParameter(), TLinearFitter::GetParError(), TFormula::GetParName(), TLinearFitter::GetParName(), TLinearFitter::GetParSignificance(), TAttParticle::GetParticle(), TLinearFitter::GetParTValue(), TGCocoa::GetPasteBuffer(), TAlienSystem::GetPathInfo(), THDFSSystem::GetPathInfo(), TFTP::GetPathInfo(), TSystem::GetPathInfo(), TProofBench::GetPerfSpecs(), TGLViewer::GetPictureUsingBB(), TGLViewer::GetPictureUsingFBO(), TBufferJSON::GetPidOffset(), TFractionFitter::GetPlot(), TGeoTrack::GetPoint(), TFFTComplexReal::GetPointComplex(), TFFTRealComplex::GetPointComplex(), TFFTComplexReal::GetPointReal(), TFFTReal::GetPointReal(), TFFTComplexReal::GetPoints(), TFFTComplexReal::GetPointsComplex(), TGeoTube::GetPointsOnSegments(), TGeoBBox::GetPointsOnSegments(), TGeoCone::GetPointsOnSegments(), TGeoTubeSeg::GetPointsOnSegments(), TGeoConeSeg::GetPointsOnSegments(), TFFTComplexReal::GetPointsReal(), TFFTRealComplex::GetPointsReal(), TFFTReal::GetPointsReal(), TProofServ::GetPriority(), TXSlave::GetProofdProtocol(), TGCocoa::GetProperty(), TDictAttributeMap::GetPropertyAsString(), TH1::GetQuantiles(), TF1::GetQuantiles(), TF2::GetRandom(), TH1::GetRandom(), TF1::GetRandom(), TF2::GetRandom2(), TF3::GetRandom3(), TTreeFormula::GetRealInstance(), TFractionFitter::GetResult(), TGeoPcon::GetRmax(), TGeoPcon::GetRmin(), TXNetFile::GetRootdProtocol(), TTable::GetRowClass(), TTable::GetRowDescriptors(), TXTRU::GetSectionScale(), TXTRU::GetSectionX0(), TXTRU::GetSectionY0(), TXTRU::GetSectionZ(), TGQuartz::GetSelectedDrawableChecked(), TSelector::GetSelector(), TUnixSystem::GetServiceByName(), TWinNTSystem::GetServiceByName(), TProofMgrLite::GetSessionLogs(), TGClient::GetShadow(), TGeoMCGeometry::GetShape(), TAlienCollection::GetSize(), TFile::GetSize(), TStreamerSTL::GetSize(), TH1::GetSkewness(), TUnixSystem::GetSockOpt(), TWinNTSystem::GetSockOpt(), TFileStager::GetStaged(), TProofLite::GetStagingStatusDataSet(), TProof::GetStagingStatusDataSet(), TGLiteJobStatus::GetStatus(), TClass::GetStreamerInfo(), TClass::GetStreamerInfoAbstractEmulated(), TAlienCollection::GetSURL(), TSQLiteServer::GetTableInfo(), TPgSQLServer::GetTableInfo(), TSQLiteServer::GetTables(), TPgSQLServer::GetTables(), TSapDBServer::GetTables(), TGStatusBar::GetText(), TParallelCoord::GetTree(), TProofLite::GetTreeHeader(), TProof::GetTreeHeader(), TBufferJSON::GetTRefExecId(), TAlienCollection::GetTURL(), TFFTReal::GetType(), TDataType::GetTypeName(), TAuthenticate::GetUserPasswd(), TExMap::GetValue(), TFormLeafInfoMultiVarDim::GetValue(), TFormLeafInfoMultiVarDimCollection::GetValue(), TFormLeafInfoMultiVarDimClones::GetValue(), TFormLeafInfoCollectionSize::GetValuePointer(), TTreeDrawArgsParser::GetVarExp(), TFormula::GetVariable(), TFormula::GetVarName(), TFormula::GetVarNumber(), TBufferJSON::GetVersionOwner(), TCondor::GetVirtualMachines(), TCondor::GetVmInfo(), TGeoVoxelFinder::GetVoxelCandidates(), TXProofServ::GetWorkers(), TProofMgr::GetXProofMgrHook(), TGeoPcon::GetZ(), TGeoXtru::GetZ(), TGSpeedo::Glow(), TProof::GoMoreParallel(), TProof::GoParallel(), TGTable::GotoTableRange(), TXProofMgr::Grep(), TFoam::Grow(), TCollection::GrowBy(), TProofBenchDataSet::Handle(), TGVSplitter::HandleButton(), TGHSplitter::HandleButton(), TProofServ::HandleCache(), TProofServ::HandleCheckFile(), TGLEventHandler::HandleCrossing(), TProofServ::HandleDataSets(), TGLEventHandler::HandleEvent(), TProofServ::HandleException(), TFormula::HandleExponentiation(), TGLEventHandler::HandleFocusChange(), TProofServLite::HandleFork(), TProof::HandleInputMessage(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TProof::HandleOutputOptions(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofServ::HandleProcess(), TApplicationServer::HandleSocketInput(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TProof::HandleSubmerger(), TXProofServ::HandleUrgentData(), TApplicationServer::HandleUrgentData(), TProofServ::HandleUrgentData(), TProofServ::HandleWorkerLists(), ROOT::Detail::TSchemaRuleSet::HasRuleWithSourceClass(), TAlienSystem::HomeDirectory(), TBtree::IdxAdd(), TClass::IgnoreTObjectStreamer(), TOrdCollection::IllegalIndex(), TPainter3dAlgorithms::ImplicitFunction(), TGeoManager::Import(), TGeoElementTable::ImportElementsRN(), TFractionFitter::IncludeBin(), TProofPlayerRemote::Incorporate(), TSQLFile::IncrementModifyCounter(), TBranchObject::Init(), TSlaveLite::Init(), TOutputListSelectorDataMap::Init(), TXSlave::Init(), TXProofMgr::Init(), TMVA::MethodC50::Init(), TMVA::MethodRSNNS::Init(), TMVA::MethodRSVM::Init(), TMVA::MethodRXGB::Init(), TDataSetManagerFile::Init(), TWebFile::Init(), TFTP::Init(), TProofOutputFile::Init(), TSlave::Init(), TGComboBox::Init(), TProofLite::Init(), TMonaLisaWriter::Init(), TBranch::Init(), TFile::Init(), TDataSetManagerAliEn::Init(), TBranchElement::Init(), TTreeFormula::Init(), TClass::Init(), TGCheckButton::Init(), TGRadioButton::Init(), TProof::Init(), TFoam::InitCells(), TX11GLManager::InitGLWindow(), TFoam::Initialize(), TPostScript::Initialize(), TBranchElement::InitializeOffsets(), TBranchElement::InitInfo(), TROOT::InitInterpreter(), TBufferJSON::InitMap(), TProofPlayerRemote::InitPacketizer(), TDecompSparse::InitPivot(), TSQLFile::InitSqlDatabase(), TLegend::InsertEntry(), TCling::InspectMembers(), TGraphDelaunay::Interpolate(), TH2::Interpolate(), TH3::Interpolate(), TGraph2D::Interpolate(), TH1::Interpolate(), TSlave::Interrupt(), TApplicationRemote::Interrupt(), TGeoGenTrans::Inverse(), TDecompChol::Invert(), TDecompBK::Invert(), TDecompLU::Invert(), TDecompQRH::Invert(), TDecompSVD::Invert(), TQuaternion::Invert(), TDecompLU::InvertLU(), TCollection::IsArgNull(), TGeoPolygon::IsIllegalCheck(), TDocOutput::IsModified(), TPainter3dAlgorithms::IsoSurface(), TTreeDrawArgsParser::IsSpecified(), TNetXNGFile::IsUseable(), TMySQLResult::IsValid(), TMySQLRow::IsValid(), TSQLiteRow::IsValid(), TSQLiteResult::IsValid(), TPgSQLResult::IsValid(), TPgSQLRow::IsValid(), TTreeRow::IsValid(), TSapDBResult::IsValid(), TSapDBRow::IsValid(), TTreeResult::IsValid(), TThread::Join(), TProofPlayerRemote::JoinProcess(), TBufferJSON::JsonWriteObject(), TH2::KolmogorovTest(), TH3::KolmogorovTest(), TH1::KolmogorovTest(), TH1::LabelsDeflate(), TGaxis::LabelsLimits(), TAxis::LabelsOption(), TH1::LabelsOption(), TViewPubDataMembers::Last(), TViewPubFunctions::Last(), TViewPubDataMembers::LastLink(), TViewPubFunctions::LastLink(), TGTableLayout::Layout(), TGListView::Layout(), TGCanvas::Layout(), TGListView::LayoutHeader(), TTableDescriptor::LearnTable(), TTableSorter::LearnTable(), TQuaternion::LeftQuotient(), TPainter3dAlgorithms::LegoCartesian(), TPainter3dAlgorithms::LegoCylindrical(), TPainter3dAlgorithms::LegoPolar(), TPainter3dAlgorithms::LegoSpherical(), TPainter3dAlgorithms::LightSource(), TLinearFitter::Linf(), TFTP::ListDirectory(), TUnixSystem::ListSymbols(), TProofLite::Load(), TEventIterTree::Load(), TCling::Load(), TSystem::Load(), TClass::Load(), TProof::Load(), TChain::LoadBaskets(), TBranch::LoadBaskets(), TClass::LoadClassInfo(), TEventIter::LoadDir(), TPluginManager::LoadHandlerMacros(), TEntryListFromFile::LoadList(), TROOT::LoadMacro(), TProof::LoadPackage(), TProof::LoadPackageOnClient(), TCling::LoadPCM(), TChain::LoadTree(), TMultiLayerPerceptron::LoadWeights(), TDavixSystem::Locate(), TNetXNGSystem::Locate(), TNetXNGFileStager::LocateCollection(), TXNetFileStager::LocateCollection(), TDocParser::LocateMethodInCurrentLine(), TDocParser::LocateMethods(), TQueryResultManager::LockSession(), TProof::LogMessage(), TProof::LogViewer(), TChain::Lookup(), TDSetElement::Lookup(), TDSet::Lookup(), TGX11::LookupString(), TChain::Loop(), TGLite::Ls(), TXProofMgr::Ls(), TROOT::Macro(), TFoam::MakeActiveList(), TGeoManager::MakeAlignablePN(), TGeoBoolNode::MakeBranch(), TTreePlayer::MakeClass(), THtml::MakeClass(), TTreePlayer::MakeCode(), TMultiDimFit::MakeCoefficientErrors(), TProofBench::MakeDataSet(), TAlienSystem::MakeDirectory(), TNetXNGSystem::MakeDirectory(), TDavixSystem::MakeDirectory(), THDFSSystem::MakeDirectory(), TFTP::MakeDirectory(), TTable::MakeExpression(), TGeoCompositeShape::MakeNode(), TGCocoa::MakeOpenGLContextCurrent(), TGeoManager::MakePhysicalNode(), TGCocoa::MakeProcessForeground(), TFile::MakeProject(), TFile::MakeProjectParMake(), TFile::MakeProjectParProofInf(), TTreePlayer::MakeProxy(), TPrincipal::MakeRealCode(), TMultiDimFit::MakeRealCode(), TGeoVolume::MakeReflectedVolume(), TProofPlayerLite::MakeSelector(), TSPlot::MakeSPlot(), TTUBE::MakeTableOfCoSin(), TClassDocOutput::MakeTree(), THtml::MakeTree(), TGeoBuilder::MakeTube(), TBufferJSON::MapObject(), TFFTReal::MapOptions(), TGCanvas::MapSubwindows(), TPainter3dAlgorithms::MarchingCubeCase13(), TPacketizerAdaptive::MarkBad(), TProof::MarkBad(), TXProofMgr::Md5sum(), TEventList::Merge(), TSeqCollection::Merge(), TPolyMarker::Merge(), TQCommand::Merge(), TPolyLine3D::Merge(), TGraphErrors::Merge(), TPolyMarker3D::Merge(), THStack::Merge(), TPolyLine::Merge(), TGraphAsymmErrors::Merge(), TStatistic::Merge(), TFileCollection::Merge(), TEntryList::Merge(), TH2::Merge(), TH3::Merge(), TProofOutputFile::Merge(), TH2Poly::Merge(), TChain::Merge(), TGraph::Merge(), THnBase::Merge(), TLinearFitter::Merge(), TH1::Merge(), TTree::Merge(), TProofPlayerRemote::MergeOutputFiles(), TFileMerger::MergeRecursive(), TGLite::Mkdir(), TDirectoryFile::mkdir(), TLDAPServer::ModifyEntry(), TPainter3dAlgorithms::ModifyScreen(), TProof::ModifyWorkerLists(), TF1::Moment(), TF2::Moment2(), TF3::Moment3(), TXProofMgr::More(), TProfile::Multiply(), TProfile2D::Multiply(), TProfile3D::Multiply(), TH1::Multiply(), TClonesArray::MultiSort(), TUDPSocket::NetError(), TSocket::NetError(), TClonesArray::New(), TClass::New(), TStreamerInfo::NewArray(), TClass::NewArray(), TMySQLResult::Next(), TSQLiteResult::Next(), TPgSQLResult::Next(), TSapDBResult::Next(), TTreeResult::Next(), TEntryListFromFile::Next(), TDataSetIter::Next(), TGeoBuilder::Node(), TGeoMCGeometry::NofVolDaughters(), TDataSetManagerFile::NotifyUpdate(), TSlave::OldAuthSetup(), TProofServ::OldAuthSetup(), TSVG::On(), TTeXDump::On(), TPDF::On(), TPostScript::On(), TSessionServerFrame::OnBtnConnectClicked(), TSessionQueryFrame::OnBtnSubmit(), TSessionFrame::OnClearPackages(), TSessionFrame::OnCommandLine(), TSessionFrame::OnDisablePackages(), TSessionFrame::OnEnablePackages(), TSessionFrame::OnUploadPackages(), TFileStager::Open(), TArchiveFile::Open(), TPDF::Open(), TAlienFile::Open(), TXNetFile::Open(), TApplication::Open(), TAlienCollection::Open(), TFile::Open(), TProof::Open(), TGLScenePad::OpenComposite(), TDavixSystem::OpenDirectory(), TGFALSystem::OpenDirectory(), THDFSSystem::OpenDirectory(), TRFIOSystem::OpenDirectory(), TFTP::OpenDirectory(), TWebSystem::OpenDirectory(), TGX11::OpenDisplay(), TFileMerger::OpenExcessFiles(), TFile::OpenFromCache(), TGCocoa::OpenPixmap(), ROOT::R::TRObject::operator T(), TQuaternion::operator()(), TVector3::operator()(), TExMap::operator()(), TLorentzVector::operator()(), TFoamVect::operator+=(), TGeoBatemanSol::operator+=(), TFoamVect::operator-=(), TQuaternion::operator/(), TQuaternion::operator/=(), TFoamVect::operator=(), TGeoBuilder::operator=(), TRef::operator=(), TClonesArray::operator=(), TTable::operator=(), TVectorT< Double_t >::operator=(), TMatrixTSym< Double_t >::operator=(), TMatrixT< Double_t >::operator=(), TFoamVect::operator[](), TVolumeViewIter::operator[](), TClonesArray::operator[](), TGeoManager::OptimizeVoxels(), TObjArray::OutOfBoundsError(), TRefArray::OutOfBoundsError(), TTable::OutOfBoundsError(), TFileMerger::OutputFile(), TPerfStats::PacketEvent(), TGLScenePad::PadPaint(), THistPainter::Paint(), TVolumePosition::Paint(), TASImage::Paint(), TGraph2D::Paint(), THistPainter::Paint2DErrors(), TAxis3D::PaintAxis(), TGaxis::PaintAxis(), TGraph2DPainter::PaintErrors(), THistPainter::PaintErrors(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGraphAsymmErrors(), TGraphPainter::PaintGraphBentErrors(), TGraphPainter::PaintGraphErrors(), TGraphPainter::PaintGrapHist(), TGraphPainter::PaintGraphQQ(), THistPainter::PaintH3Iso(), THistPainter::PaintInit(), THistPainter::PaintInitH(), THistPainter::PaintLego(), THistPainter::PaintLegoAxis(), TGraph2DPainter::PaintPolyLine(), TGraph2DPainter::PaintPolyMarker(), THistPainter::PaintSurface(), THistPainter::PaintTF3(), THistPainter::PaintTriangles(), TGraph2DPainter::PaintTriangles_new(), TGraph2DPainter::PaintTriangles_old(), TAlienJDL::Parse(), TGeoManager::Parse(), TDataSetManagerAliEn::ParseCustomFindUri(), TTreeDrawArgsParser::ParseName(), TDataSetManagerAliEn::ParseOfficialDataUri(), TS3WebFile::ParseOptions(), TDataSetManager::ParseUri(), TTreeDrawArgsParser::ParseVarExp(), TTreeFormula::ParseWithLeaf(), TAlienCollection::ParseXML(), TFileMerger::PartialMerge(), TMVA::PDEFoamCell::PDEFoamCell(), TMVA::PDEFoamVect::PDEFoamVect(), TSQLStructure::PerformConversion(), TBufferJSON::PerformPostProcessing(), TXSocket::PickUpReady(), TProofMgr::Ping(), TXSocket::Ping(), TMySQLServer::PingVerify(), TProof::PollForNewWorkers(), TSemaphore::Post(), TXSocket::PostMsg(), TFormula::PrepareEvalMethod(), TProof::PrepareInputDataFile(), TAlienMasterJob::Print(), TFoamVect::Print(), TFoamCell::Print(), TEntryListFromFile::Print(), TTable::Print(), TFormula::Print(), TProof::Print(), TFTP::PrintDirectory(), TNetFile::PrintError(), TFTP::PrintError(), TProofPerfAnalysis::PrintFileInfo(), TProofPerfAnalysis::PrintWrkInfo(), TProofPlayerLite::Process(), TSelHandleDataSet::Process(), TSelEventGen::Process(), TSelectorCint::Process(), TSelVerifyDataSet::Process(), TProofLite::Process(), TSelEvent::Process(), TProofPlayer::Process(), TDSet::Process(), TProofPlayerRemote::Process(), TProof::Process(), TMacOSXSystem::ProcessApplicationDefinedEvent(), TSelectorCint::ProcessCut(), TDocOutput::ProcessDocInDir(), TDataSetManager::ProcessFile(), TSelectorCint::ProcessFill(), TFormula::ProcessFormula(), TApplicationServer::ProcessLine(), TApplication::ProcessLine(), TCivetweb::ProcessLog(), TRootCanvas::ProcessMessage(), TRootBrowserLite::ProcessMessage(), TProofServ::ProcessNext(), THttpServer::ProcessRequests(), TXSocket::ProcessUnsolicitedMsg(), TRootSniffer::ProduceImage(), TRootSniffer::ProduceMulti(), TGraph2D::Project(), TH3::Project3D(), TH3::Project3DProfile(), TProfile3D::ProjectionXYZ(), TAuthenticate::ProofAuthSetup(), TFTP::PutFile(), TXProofMgr::PutFile(), TGLite::Pwd(), TSQLiteServer::Query(), TPgSQLServer::Query(), TSapDBServer::Query(), TGLite::Query(), TPad::Range(), TPad::RangeAxis(), TBtree::Rank(), TLeafB::ReadBasket(), TBasketSQL::ReadBasketBuffers(), TBasket::ReadBasketBuffers(), TBasketSQL::ReadBasketBytes(), TBufferJSON::ReadBuf(), TProofMgrLite::ReadBuffer(), TNetXNGFile::ReadBuffer(), TNetFile::ReadBuffer(), TXNetFile::ReadBuffer(), TFile::ReadBuffer(), TStreamerInfo::ReadBuffer(), TWebFile::ReadBuffer10(), TXNetFile::ReadBufferAsync(), TRFIOFile::ReadBuffers(), TNetXNGFile::ReadBuffers(), TNetFile::ReadBuffers(), TXNetFile::ReadBuffers(), TBufferFile::ReadClass(), TBufferFile::ReadClassBuffer(), TBufferJSON::ReadClassBuffer(), TBufferJSON::ReadClassEmulated(), TBufferJSON::ReadClones(), TProofResourcesStatic::ReadConfigFile(), TSQLFile::ReadConfigurations(), TZIPFile::ReadDirectory(), TZIPFile::ReadEndHeader(), TMacro::ReadFile(), TPaveText::ReadFile(), TKey::ReadFile(), TEnv::ReadFile(), TTree::ReadFile(), TGX11::ReadGIF(), TGWin32::ReadGIF(), TX11GLManager::ReadGLBuffer(), TDataSetManager::ReadGroupConfig(), TDirectoryFile::ReadKeys(), TBranchElement::ReadLeavesClones(), TBranchElement::ReadLeavesCollection(), TBranchElement::ReadLeavesMakeClass(), TBufferSQL::ReadLong64(), TZIPFile::ReadMemberHeader(), TKey::ReadObj(), TBufferJSON::ReadObject(), TKey::ReadObjectAny(), TBufferFile::ReadObjectAny(), TKey::ReadObjWithBuffer(), TDatabasePDG::ReadPDGTable(), TGX11::ReadPictureDataFromFile(), TBufferJSON::ReadProcessID(), TAuthenticate::ReadRootAuthrc(), TClass::ReadRules(), TTree::ReadStream(), TBufferJSON::ReadString(), TDirectoryFile::ReadTObject(), TEveTriangleSet::ReadTrivialFile(), TBufferSQL::ReadUInt(), TBufferSQL::ReadULong(), TBufferSQL::ReadULong64(), TLeaf::ReadValue(), TFormLeafInfoDirect::ReadValue(), TFormLeafInfoMultiVarDimDirect::ReadValue(), TBufferXML::ReadVersion(), TBufferFile::ReadVersion(), TBufferSQL2::ReadVersion(), TBufferFile::ReadVersionForMemberWise(), TBufferJSON::ReadVersionForMemberWise(), TZIPFile::ReadZip64EndLocator(), TZIPFile::ReadZip64EndRecord(), TTable::ReAlloc(), TStopwatch::RealTime(), TPacketizerAdaptive::ReassignPacket(), TProfile::Rebin(), TH1::Rebin(), TH2::Rebin2D(), TProfile2D::Rebin2D(), TH3::Rebin3D(), TApplicationServer::ReceiveFile(), TProofServ::ReceiveFile(), TXSocket::Reconnect(), TFile::Recover(), TBackCompFitter::ReCreateMinimizer(), TViewPubDataMembers::RecursiveRemove(), TViewPubFunctions::RecursiveRemove(), TSSLSocket::Recv(), TUDPSocket::Recv(), TSocket::Recv(), TUnixSystem::RecvBuf(), TWinNTSystem::RecvBuf(), TApplicationRemote::RecvLogFile(), TProof::RecvLogFile(), TSSLSocket::RecvRaw(), TUnixSystem::RecvRaw(), TWinNTSystem::RecvRaw(), TProof::RedirectWorker(), TGLViewer::RefCamera(), TSPlot::RefillHist(), TGLite::Register(), TColorGradient::RegisterColor(), TDataSetManagerFile::RegisterDataSet(), TProofLite::RegisterDataSet(), TProof::RegisterDataSet(), TProofServ::RegisterDataSets(), TCling::RegisterModule(), TBonjourRegistrar::RegisterService(), TClass::RegisterStreamerInfo(), TUnfold::RegularizeBins(), TCondor::Release(), TSelHandleDataSet::ReleaseCache(), TProofBenchDataSet::ReleaseCache(), TLinearFitter::ReleaseParameter(), TSQLiteServer::Reload(), TPgSQLServer::Reload(), TSapDBServer::Reload(), TCling::ReloadAllSharedLibraryMaps(), TEntryList::Relocate(), TXSocket::RemoteTouch(), TObjectTable::Remove(), TEntryListBlock::Remove(), TExMap::Remove(), TViewPubDataMembers::Remove(), TViewPubFunctions::Remove(), TBtree::Remove(), TDataSetManagerFile::RemoveDataSet(), TProof::RemoveDataSet(), TSelHandleDataSet::RemoveFile(), TProofBenchDataSet::RemoveFiles(), TGeoManager::RemoveNavigator(), TParallelCoord::RemoveVariable(), TProof::RemoveWorkers(), TLDAPServer::RenameEntry(), TFTP::RenameFile(), TGX11TTF::RenderString(), TGWin32::RenderString(), TGQuartz::RenderTTFString(), TNetXNGFile::ReOpen(), TNetFile::ReOpen(), TWebFile::ReOpen(), TXMLFile::ReOpen(), TFile::ReOpen(), TSQLFile::ReOpen(), TGeoBoolNode::ReplaceMatrix(), TGeoVolume::ReplaceNode(), TFormula::ReplaceParamName(), THtml::ReplaceSpecialChars(), TGeoManager::ReplaceVolume(), TProofLite::RequestStagingDataSet(), TProof::RequestStagingDataSet(), TBufferJSON::Reset(), TColorGradient::ResetColor(), TBufferJSON::ResetMap(), TMemFile::ResetObjects(), TView3D::ResetView(), TGListView::ResizeColumns(), TGWin32GLManager::ResizeOffScreenDevice(), TX11GLManager::ResizeOffScreenDevice(), TBonjourResolver::ResolveBonjourRecord(), TAlienJob::Resubmit(), TCondor::Resume(), TProofLog::Retrieve(), TProofLogElem::Retrieve(), TMethodCall::ReturnType(), TAuthenticate::RfioAuth(), TGLite::Rm(), TXProofMgr::Rm(), TProofMgr::Rm(), TGLite::Rmdir(), TSQLFile::Rollback(), TQuaternion::Rotation(), TApplicationServer::Run(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TProofBench::RunCPU(), TProofBench::RunCPUx(), TProofBench::RunDataSet(), TProofBench::RunDataSetx(), TDocOutput::RunDot(), TGeoOverlap::SampleOverlap(), TEnv::Save(), SaveAs(), TGeoVolume::SaveAs(), TSpline3::SaveAs(), TSpline5::SaveAs(), TGeoManager::SaveAttributes(), TEnv::SaveLevel(), TGMimeTypes::SaveMimes(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TGLViewer::SavePictureUsingBB(), TGLViewer::SavePictureUsingFBO(), TF12::SavePrimitive(), TGIcon::SavePrimitive(), TGPictureButton::SavePrimitive(), TCanvas::SaveSource(), TStyle::SaveSource(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TProof::SaveWorkerInfo(), TEntryList::Scan(), TBackCompFitter::Scan(), TTreePlayer::Scan(), TDataSetManagerFile::ScanDataSet(), TDataSetManager::ScanDataSet(), TDataSetManager::ScanFile(), TUnfold::ScanLcurve(), TSpectrum2::Search(), TSpectrum3::Search(), TLDAPServer::Search(), TSpectrum::Search(), TSpectrum3::SearchFast(), TSpectrum3::SearchHighRes(), TSpectrum2::SearchHighRes(), TSpectrum::SearchHighRes(), TWebFile::Seek(), TDavixFile::Seek(), TFile::Seek(), TSQLiteServer::SelectDataBase(), TPgSQLServer::SelectDataBase(), TSapDBServer::SelectDataBase(), TSSLSocket::Send(), TPSocket::Send(), TUDPSocket::Send(), TSocket::Send(), TXSocket::Send(), TUnixSystem::SendBuf(), TWinNTSystem::SendBuf(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TApplicationRemote::SendFile(), TProof::SendFile(), TMonaLisaWriter::SendFileCheckpoint(), TMonaLisaWriter::SendFileCloseEvent(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TMonaLisaWriter::SendFileOpenProgress(), TMonaLisaWriter::SendInfoDescription(), TMonaLisaWriter::SendInfoStatus(), TMonaLisaWriter::SendInfoTime(), TMonaLisaWriter::SendInfoUser(), TXSocket::SendInterrupt(), TXProofMgr::SendMsgToUsers(), TSQLMonitoringWriter::SendParameters(), TMonaLisaWriter::SendParameters(), TMonaLisaWriter::SendProcessingProgress(), TMonaLisaWriter::SendProcessingStatus(), TXSocket::SendRaw(), TUnixSystem::SendRaw(), TWinNTSystem::SendRaw(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TSQLiteServer::ServerInfo(), TPgSQLServer::ServerInfo(), TSapDBServer::ServerInfo(), TAxis::Set(), TControlBarButton::SetAction(), TRef::SetAction(), TBranchObject::SetAddress(), TBranchElement::SetAddress(), TGeoManager::SetAlignableEntry(), TGeoRotation::SetAngles(), TSQLFile::SetArrayLimit(), TUri::SetAuthority(), THelix::SetAxis(), TTree::SetBasketSize(), THnSparse::SetBinError2(), TAxis::SetBinLabel(), TEfficiency::SetBins(), TH1::SetBins(), TChain::SetBranchAddress(), TTree::SetBranchAddress(), TGeoPhysicalNode::SetBranchAsState(), TTree::SetBranchStatus(), TBranch::SetBufferAddress(), TBufferJSON::SetBufferDisplacement(), TRootControlBar::SetButtonState(), TControlBar::SetButtonState(), TBufferFile::SetByteCount(), TTree::SetCacheEntryRange(), TFile::SetCacheFileDir(), TTree::SetCacheSizeAux(), TTreeReader::SetChain(), TGeoHelix::SetCharge(), TClonesArray::SetClass(), TSpline3::SetCond(), TGListView::SetContainer(), TGLViewer::SetCurrentCamera(), TGeoManager::SetCurrentNavigator(), TROOT::SetCutClassName(), TOutputListSelectorDataMap::SetDataMembers(), TProof::SetDataSetTreeName(), TGListView::SetDefaultColumnWidth(), TGeoBBox::SetDimensions(), TGeoPgon::SetDimensions(), TGeoPcon::SetDimensions(), TGeoXtru::SetDimensions(), TSpectrumTransform::SetDirection(), TSpectrum2Transform::SetDirection(), TGCocoa::SetDoubleBufferON(), TDSetElement::SetEntryList(), TChain::SetEntryList(), TDSet::SetEntryList(), TSQLStatement::SetError(), TSQLServer::SetError(), TGeoGlobalMagField::SetField(), TSpectrumFit::SetFitParameters(), TSpectrum2Fit::SetFitParameters(), TF1::SetFitResult(), TCanvas::SetFixedAspectRatio(), TPad::SetFixedAspectRatio(), TLinearFitter::SetFormula(), TUri::SetFragment(), TGVSplitter::SetFrame(), TGHSplitter::SetFrame(), ROOT::TSchemaRule::SetFromRule(), TSelectorCint::SetFuncProto(), TGaxis::SetFunction(), TCling::Setgvp(), TGListView::SetHeader(), TGListView::SetHeaders(), TGeoHelix::SetHelixStep(), TUri::SetHierPart(), TUri::SetHost(), TGX11::SetIconName(), TFoam::SetInhiDiv(), TUnfold::SetInput(), TKDE::SetKernelFunction(), TGSpeedo::SetLabelText(), TGCompositeFrame::SetLayoutManager(), TGLLightSet::SetLight(), TDecompChol::SetMatrix(), TDecompLU::SetMatrix(), TDecompQRH::SetMatrix(), TDecompSVD::SetMatrix(), TDecompSparse::SetMatrix(), TGeoManager::SetMaxThreads(), TMergerInfo::SetMergedWorker(), TGSpeedo::SetMinMaxScale(), TFormula::SetName(), TKDE::SetNBins(), TGeoPolygon::SetNextIndex(), TGeoChecker::SetNmeshPoints(), TStyle::SetNumberContours(), TObjectSpy::SetObject(), TFile::SetOffset(), TProofResourcesStatic::SetOption(), TControlBar::SetOrientation(), TGLViewer::SetOrthoCamera(), THtml::THelperBase::SetOwner(), TColor::SetPalette(), TStyle::SetPaperSize(), TGeoParaboloid::SetParaboloidDimensions(), TFormula::SetParameter(), TProofBenchRunCPU::SetParameters(), TProofBenchRunDataRead::SetParameters(), TFormula::SetParName(), TGStatusBar::SetParts(), TEfficiency::SetPassedEvents(), TGeoPhysicalNode::SetPath(), TUri::SetPath(), TSpectrumFit::SetPeakParameters(), TSpectrum2Fit::SetPeakParameters(), TGLViewer::SetPerspectiveCamera(), TGPictureButton::SetPicture(), TBufferJSON::SetPidOffset(), TFFTComplexReal::SetPoint(), TFFTReal::SetPoint(), TGeoShapeAssembly::SetPoints(), TGeoSphere::SetPoints(), TFFTComplex::SetPointsComplex(), TUri::SetPort(), TSynapse::SetPost(), TSynapse::SetPre(), TRint::SetPrompt(), TChain::SetProof(), TProofBench::SetProofDS(), TProofLite::SetProofServEnv(), TWebFile::SetProxy(), TUri::SetQuery(), TGeoMaterial::SetRadLen(), THelix::SetRange(), TGProgressBar::SetRange(), TKDE::SetRange(), TView3D::SetRange(), TFractionFitter::SetRangeY(), TFractionFitter::SetRangeZ(), TBufferJSON::SetReadParam(), TSpectrumTransform::SetRegion(), TSpectrum2Transform::SetRegion(), TUri::SetRelativePart(), TRootSnifferScanRec::SetResult(), TFoam::SetRho(), TFoam::SetRhoInt(), TGTableLayout::SetRowColSizesInit(), TCling::SetRTLD_LAZY(), TCling::SetRTLD_NOW(), TProofPerfAnalysis::SetSaveResult(), TGeoScale::SetScale(), TGeoGenTrans::SetScale(), TUri::SetScheme(), TGeoShapeAssembly::SetSegsAndPols(), TGeoVolume::SetShape(), TUnixSystem::SetSockOpt(), TWinNTSystem::SetSockOpt(), TGeoSphere::SetSphDimensions(), TCondor::SetState(), TBufferSQL2::SetStreamerElementNumber(), TClass::SetStreamerImpl(), TROOT::SetStyle(), TSQLFile::SetTablesType(), TGStatusBar::SetText(), TGX11::SetTextColor(), TGQuartz::SetTextFont(), TGQuartz::SetTextSize(), TGButtonGroup::SetTitle(), TGGroupFrame::SetTitle(), TToggle::SetToggledObject(), TEfficiency::SetTotalEvents(), TSpectrumTransform::SetTransformType(), TSpectrum2Transform::SetTransformType(), TTreeReader::SetTree(), TGeoTube::SetTubeDimensions(), TControlBarButton::SetType(), TProofServLite::Setup(), TXProofServ::Setup(), TApplicationServer::Setup(), TProofServ::Setup(), TPluginHandler::SetupCallEnv(), TGLViewer::SetupCameras(), TProofServ::SetupCommon(), TProofServLite::SetupOnFork(), TSlaveLite::SetupServ(), TXSlave::SetupServ(), TSlave::SetupServ(), TProofLite::SetupWorkers(), TUri::SetUri(), TUrl::SetUrl(), TSQLFile::SetUseIndexes(), TGeoManager::SetUseParallelWorldNav(), TUri::SetUserInfo(), TSQLFile::SetUseSuffixes(), TAlienJDL::SetValueByCmd(), TFormula::SetVariable(), TFormula::SetVariables(), TGeoArb8::SetVertex(), TFractionFitter::SetWeight(), TGCocoa::SetWindowBackgroundPixmap(), TGX11::SetWindowName(), TGCocoa::SetWMTransientHint(), TBufferJSON::SetWriteParam(), TFoam::SetXdivPRD(), TGeoHelix::SetXYcurvature(), TTree::Show(), TDataSetManagerFile::ShowCache(), TProof::ShowDataSetQuota(), TProof::ShowDataSets(), TSessionViewer::ShowEnabledPackages(), TSystem::ShowOutput(), TSessionViewer::ShowPackages(), TSessionViewer::ShowStatus(), TFile::ShrinkCacheFileDir(), TDataSetIter::Shunt(), TSQLiteServer::Shutdown(), TPgSQLServer::Shutdown(), TSapDBServer::Shutdown(), TPainter3dAlgorithms::SideVisibilityEncode(), TVirtualFFT::SineCosine(), TPolyLineShape::Sizeof3D(), TBufferFile::SkipVersion(), TSelHist::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), TSelEvent::SlaveBegin(), TGraphPainter::Smooth(), TH1::Smooth(), TH1::SmoothArray(), TDecompChol::Solve(), TDecompBK::Solve(), TDecompLU::Solve(), TDecompQRH::Solve(), TDecompSVD::Solve(), TDecompSparse::Solve(), TClonesArray::Sort(), TOrdCollection::Sort(), TObjArray::Sort(), TRefArray::Sort(), TGeoVoxelFinder::SortAll(), TGeoVoxelFinder::SortCrossedVoxels(), TGeoVolume::SortNodes(), TEveViewer::SpawnGLViewer(), TPainter3dAlgorithms::Spectrum(), TDSet::SplitEntryList(), TPacketizerAdaptive::SplitPerHost(), TBufferSQL2::SqlObjectData(), TBufferSQL2::SqlReadObject(), TBufferSQL2::SqlReadObjectDirect(), TBufferSQL2::SqlReadValue(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), TNetXNGSystem::Stage(), TAlienCollection::Stage(), TGLAutoRotator::StartImageAutoSave(), TGLAutoRotator::StartImageAutoSaveAnimatedGif(), TProofSuperMaster::StartSlaves(), TProofCondor::StartSlaves(), TProof::StartSlaves(), TTreeCacheUnzip::StartThreadUnzip(), TSQLFile::StartTransaction(), TDSet::StartViewer(), TXProofMgr::Stat(), TSQLiteServer::Statement(), TQpVar::StepBound(), TTree::StopCacheLearningPhase(), TSQLStructure::StoreClassInNormalForm(), TSQLStructure::StoreElementInNormalForm(), TKeySQL::StoreKeyObject(), TSQLFile::StoreObjectInTables(), TProofPlayerRemote::StoreOutput(), TSQLFile::StreamKeysForDirectory(), TGLite::Submit(), TAlienJDL::SubmitTest(), TDocMacroDirective::SubProcess(), TPainter3dAlgorithms::SurfaceCartesian(), TPainter3dAlgorithms::SurfaceCylindrical(), TPainter3dAlgorithms::SurfacePolar(), TPainter3dAlgorithms::SurfaceProperty(), TGL5DDataSetEditor::SurfaceSelected(), TPainter3dAlgorithms::SurfaceSpherical(), TAlienFile::SUrl(), TCondor::Suspend(), TGLViewer::SwapBuffers(), TEveViewer::SwitchStereo(), TTreeFormulaManager::Sync(), TXNetFile::SysClose(), TXNetFile::SysStat(), THistPainter::TableInit(), TStreamerInfo::TagFile(), TBufferFile::TagStreamerInfo(), TXProofMgr::Tail(), TApplication::TApplication(), TApplicationRemote::TApplicationRemote(), TASLogHandler::TASLogHandler(), TChainIndex::TChainIndex(), TDataSetManagerAliEn::TDataSetManagerAliEn(), TDecompChol::TDecompChol(), TDecompLU::TDecompLU(), TDecompQRH::TDecompQRH(), TDecompSVD::TDecompSVD(), TDirectory::TDirectory(), TDirectoryFile::TDirectoryFile(), TDSet::TDSet(), TEfficiency::TEfficiency(), TSelectorEntries::Terminate(), TF1::TF1(), TF12::TF12(), TF2::TF2(), TF3::TF3(), TFFTRealComplex::TFFTRealComplex(), TFile::TFile(), TFileSet::TFileSet(), TFoam::TFoam(), TFoamCell::TFoamCell(), TFoamMaxwt::TFoamMaxwt(), TFoamVect::TFoamVect(), TFormLeafInfoMultiVarDim::TFormLeafInfoMultiVarDim(), TFormLeafInfoReference::TFormLeafInfoReference(), TFormula::TFormula(), TGaxis::TGaxis(), TGDoubleHSlider::TGDoubleHSlider(), TGDoubleVSlider::TGDoubleVSlider(), TGeoBoolNode::TGeoBoolNode(), TGeoBuilder::TGeoBuilder(), TGeoCompositeShape::TGeoCompositeShape(), TGeoMedium::TGeoMedium(), TGeoNode::TGeoNode(), TGeoPhysicalNode::TGeoPhysicalNode(), TGeoPNEntry::TGeoPNEntry(), TGeoXtru::TGeoXtru(), TGFileContainer::TGFileContainer(), TGFileDialog::TGFileDialog(), TGFSComboBox::TGFSComboBox(), TGGC::TGGC(), TGHScrollBar::TGHScrollBar(), TGHSlider::TGHSlider(), TGHSplitter::TGHSplitter(), TGL5DDataSet::TGL5DDataSet(), TGLParametricEquation::TGLParametricEquation(), TGMsgBox::TGMsgBox(), TGPictureButton::TGPictureButton(), TGPrintDialog::TGPrintDialog(), TGQuartz::TGQuartz(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraph2DErrors::TGraph2DErrors(), TGraphAsymmErrors::TGraphAsymmErrors(), TGraphErrors::TGraphErrors(), TGRegion::TGRegion(), TGSelectBox::TGSelectBox(), TGSpeedo::TGSpeedo(), TGTableHeaderFrame::TGTableHeaderFrame(), TGTripleHSlider::TGTripleHSlider(), TGVScrollBar::TGVScrollBar(), TGVSlider::TGVSlider(), TGVSplitter::TGVSplitter(), THbookFile::THbookFile(), THilbertMatrixT< Element >::THilbertMatrixT(), THilbertMatrixTSym< Element >::THilbertMatrixTSym(), TGLAutoRotator::Timeout(), TKey::TKey(), TLinearFitter::TLinearFitter(), TMapFile::TMapFile(), TMemFile::TMemFile(), TMinuit::TMinuit(), TMixture::TMixture(), TNetXNGFile::TNetXNGFile(), TObjectRefSpy::TObjectRefSpy(), TGLLightSet::ToggleLight(), TPad::TPad(), TPCON::TPCON(), TPolyLineShape::TPolyLineShape(), TPrincipal::TPrincipal(), TProofBench::TProofBench(), TProofPerfAnalysis::TProofPerfAnalysis(), TProofServ::TProofServ(), TProofServLogHandler::TProofServLogHandler(), TMultiLayerPerceptron::Train(), TFFTComplex::Transform(), TFFTComplexReal::Transform(), TFFTRealComplex::Transform(), TFFTReal::Transform(), TH1::TransformHisto(), TDecompLU::TransSolve(), TDecompQRH::TransSolve(), TDecompSVD::TransSolve(), TRobustEstimator::TRobustEstimator(), TRotMatrix::TRotMatrix(), TProofServ::TruncateLogFile(), TXTRU::TruncateNxy(), TXTRU::TruncateNz(), TSemaphore::TryWait(), TSpectrum2Fit::TSpectrum2Fit(), TSpectrum2Transform::TSpectrum2Transform(), TSpectrumFit::TSpectrumFit(), TSpectrumTransform::TSpectrumTransform(), TSQLFile::TSQLFile(), TTreeIndex::TTreeIndex(), TTreeReader::TTreeReader(), TTreeRow::TTreeRow(), TUnfold::TUnfold(), TVolumeView::TVolumeView(), TWinNTSystem::TWinNTSystem(), TXMLFile::TXMLFile(), TXNetSystem::TXNetSystem(), TXSocket::TXSocket(), TXTRU::TXTRU(), TMessage::Uncompress(), TUnixSystem::UnixTcpService(), TUnixSystem::UnixUnixConnect(), TUnixSystem::UnixUnixService(), TDavixSystem::Unlink(), TNetXNGSystem::Unlink(), THDFSSystem::Unlink(), TCling::UnloadLibraryMap(), TProof::UnloadPackage(), TRootSniffer::UnregisterObject(), TTreeCacheUnzip::UnzipBuffer(), TFunction::Update(), TGFSComboBox::Update(), TTable::Update(), TFitEditor::UpdateGUI(), TObjectTable::UpdateInstCount(), TGLCamera::UpdateInterest(), TCling::UpdateListOfLoadedSharedLibraries(), TVolumeViewIter::UpdateTempMatrix(), TParallelMergingFile::UploadAndReset(), TProofMgr::UploadFiles(), TProof::UploadPackage(), TProof::UploadPackageOnClient(), TWinNTSystem::Utime(), TDSetElement::Validate(), TBranchElement::ValidateAddress(), TProofSuperMaster::ValidateDSet(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TGLScenePad::ValidateObjectBuffer(), TBackCompFitter::ValidParameterIndex(), TFoam::Varedu(), TBufferXML::VerifyAttr(), TProof::VerifyDataSet(), TSQLObjectData::VerifyDataType(), TBufferXML::VerifyNode(), TGLCamera::ViewportDeltaToWorld(), TGLCamera::ViewportRect(), TGLCamera::ViewportToWorld(), TGeoMCGeometry::VolDaughterCopyNo(), TGeoMCGeometry::VolDaughterName(), TGeoMCGeometry::VolId2Mate(), TGeoMCGeometry::VolName(), TGeoBuilder::Volume(), TGeoVolume::Voxelize(), TSemaphore::Wait(), TProofPerfAnalysis::WorkerActivity(), TBufferSQL2::WorkWithClass(), TBufferSQL2::WorkWithElement(), TBufferXML::WorkWithElement(), TBufferJSON::WorkWithElement(), TGLCamera::WorldDeltaToViewport(), TGLCamera::WorldToViewport(), TSSLSocket::WrapWithSSL(), TParallelMergingFile::Write(), TDirectoryFile::Write(), Write(), TFile::Write(), TBufferJSON::WriteBuf(), TCastorFile::WriteBuffer(), TNetXNGFile::WriteBuffer(), TNetFile::WriteBuffer(), TXNetFile::WriteBuffer(), TFile::WriteBuffer(), TStreamerInfo::WriteBufferAux(), TFile::WriteBufferViaCache(), TPDF::WriteCompressedBuffer(), TDataSetManagerFile::WriteDataSet(), TEnv::WriteFile(), TGX11::WriteGIF(), TGWin32::WriteGIF(), TASImage::WriteImage(), TDirectoryFile::WriteObjectAny(), TBufferFile::WriteObjectAny(), TBufferJSON::WriteObjectAny(), TDatabasePDG::WritePDGTable(), TPluginManager::WritePluginMacros(), TPluginManager::WritePluginRecords(), TBufferJSON::WriteProcessID(), TPerfStats::WriteQueryLog(), TBufferJSON::WriteString(), TDirectoryFile::WriteTObject(), TDirectory::WriteTObject(), TBufferFile::WriteVersion(), TBufferFile::WriteVersionMemberWise(), TBufferJSON::WriteVersionMemberWise(), TThread::XAction(), TBufferXML::XmlReadBlock(), and TBufferXML::XmlReadObject().

void TObject::Execute ( const char *  method,
const char *  params,
Int_t error = 0 
)
virtual

Execute method on this object with the given parameter string, e.g.

"3.14,1,\"text"".

Reimplemented in TCling, TInterpreter, TContextMenu, and TMethodCall.

Definition at line 335 of file TObject.cxx.

Referenced by TQCanvasMenu::Execute(), TContextMenu::Execute(), TGroupButton::ExecuteAction(), and TFileMerger::MergeRecursive().

void TObject::Execute ( TMethod method,
TObjArray params,
Int_t error = 0 
)
virtual

Execute method on this object with parameters stored in the TObjArray.

The TObjArray should contain an argv vector like:

argv[0] ... argv[n] = the list of TObjString parameters

Reimplemented in TCling, TContextMenu, TMethodCall, and TInterpreter.

Definition at line 353 of file TObject.cxx.

void TObject::ExecuteEvent ( Int_t  event,
Int_t  px,
Int_t  py 
)
virtual
void TObject::Fatal ( const char *  method,
const char *  msgfmt,
  ... 
) const
virtual

Issue fatal error message.

Use "location" to specify the method where the fatal error occurred. Accepts standard printf formatting arguments.

Definition at line 946 of file TObject.cxx.

Referenced by TGeoMixture::AddElement(), TGeoElement::AddIsotope(), TBranch::AddLastBasket(), TGeoBranchArray::AddLevel(), TUnfold::AddMSparse(), TGeoParallelWorld::AddNode(), TProcessID::AddProcessID(), TGeoVolumeMulti::AddVolume(), TGeoPhysicalNode::Align(), TGDMLParse::BooSolid(), TTreeSQL::Branch(), TTreeSQL::BranchImp(), TTreeSQL::BranchOld(), TTree::BranchOld(), TTreeSQL::Bronch(), TStreamerInfo::BuildCheck(), TGeoVolume::CheckShapes(), Clone(), TGeoVolume::CloneNodesAndConnect(), TDirectoryFile::CloneObject(), TDirectory::CloneObject(), TGeoParallelWorld::CloseGeometry(), TGeoShapeAssembly::ComputeBBox(), TGeoPcon::ComputeBBox(), TGeoPgon::ComputeBBox(), TGeoArb8::ComputeTwist(), TProfile::Copy(), TProfile2D::Copy(), TProfile3D::Copy(), TGDMLWrite::CreateElementN(), TProofServ::CreateServer(), TGeoNavigator::CrossDivisionCell(), TGeoMixture::DefineElement(), TGeoVolume::Divide(), TUnfoldSys::DoBackgroundSubtraction(), TUnfold::DoUnfold(), TBuffer::Expand(), TVirtualStreamerInfo::Factory(), TBranchElement::FillLeavesImpl(), TGeoMaterial::FillMaterialEvolution(), TMethod::FindDataMember(), TGeoParallelWorld::FindNextBoundary(), TGeoNavigator::FindNextBoundary(), TGeoParallelWorld::FindNode(), TCling::GenerateTClass(), TClass::GetClassMethod(), TClass::GetClassMethodWithPrototype(), TChain::GetClusterIterator(), TBranchElement::GetCollectionProxy(), TROOT::GetGlobalFunction(), TROOT::GetGlobalFunctionWithPrototype(), TClass::GetListOfBases(), TROOT::GetListOfGlobalFunctions(), TROOT::GetListOfGlobals(), TFunction::GetListOfMethodArgs(), TROOT::GetListOfTypes(), TClass::GetMethod(), TClass::GetMethodWithPrototype(), TApplicationServer::GetOptions(), TProofServ::GetOptions(), TGDMLParse::GetScale(), TGDMLParse::GetScaleVal(), TGeoMCGeometry::Gsvolu(), TDataMember::Init(), TThread::Init(), TGeoBranchArray::Init(), TGeoManager::Init(), TClass::Init(), TGeoBranchArray::InitFromNavigator(), TBranchElement::InitializeOffsets(), TInterpreter::Instance(), TGeoPhysicalNode::IsMatchingState(), TGeoVolumeMulti::MakeCopyVolume(), TGeoVolume::MakeReflectedVolume(), TH1::Merge(), TUnfold::MultiplyMSparseM(), TUnfold::MultiplyMSparseMSparse(), TClass::New(), TGeoBuilder::Node(), TEfficiency::operator+=(), TGeoPolygon::OutscribedConvex(), TBufferSQL::ReadFastArray(), TBufferSQL::ReadFastArrayDouble32(), TBufferSQL::ReadFastArrayFloat16(), TBufferSQL::ReadFastArrayWithFactor(), TBufferSQL::ReadFastArrayWithNbits(), TBranchElement::ReadLeavesImpl(), TKey::ReadObj(), TKey::ReadObjectAny(), TKey::ReadObjWithBuffer(), TFileMerger::RecursiveRemove(), TGeoVolume::ReplaceNode(), TGeoPgon::Rpg(), TUnfold::ScanLcurve(), TGeoConeSeg::SetConsDimensions(), TBranchElement::SetFillLeavesPtr(), TGeoMaterial::SetRadLen(), TBranchElement::SetReadLeavesPtr(), TGeoTubeSeg::SetTubsDimensions(), TClass::SetUnloaded(), TClass::StreamerDefault(), TApplication::TApplication(), TClass::TClass(), TFile::TFile(), TGeoIntersection::TGeoIntersection(), TGeoIsotope::TGeoIsotope(), TGeoPolygon::TGeoPolygon(), TGeoSubtraction::TGeoSubtraction(), TGeoUnion::TGeoUnion(), TGeoVolume::TGeoVolume(), TGeoVoxelFinder::TGeoVoxelFinder(), TPythia6::TPythia6(), TPythia8::TPythia8(), TSQLFile::TSQLFile(), TStreamerSTL::TStreamerSTL(), TSVDUnfold::TSVDUnfold(), TXMLFile::TXMLFile(), TParallelMergingFile::UploadAndReset(), TGDMLParse::VolProcess(), TMacOSXSystem::WaitEvents(), and TBufferSQL::WriteFastArray().

TObject * TObject::FindObject ( const char *  name) const
virtual

Must be redefined in derived classes.

This function is typically used with TCollections, but can also be used to find an object by name inside this object.

Reimplemented in TH1, TPad, TROOT, TDirectory, TGraph, TGraph2D, TDataSet, TCollection, TObjArray, TDataSetIter, TBtree, TList, TMap, TGeometry, RooLinkedList, TListOfDataMembers, THashTable, TListOfFunctions, TListOfFunctionTemplates, THbookFile, TFolder, THashList, TListOfEnumsWithLock, TViewPubDataMembers, TViewPubFunctions, and TListOfTypes.

Definition at line 379 of file TObject.cxx.

Referenced by TDocParser::AddClassMethodsRecursively(), TProof::AddWorkers(), TMVA::Configurable::AssignOpt(), TAlienCollection::CheckIfOnline(), ClassImp(), TProof::ClearData(), TProof::ClearInputData(), ROOT::Internal::TTreeReaderValueBase::CreateProxy(), do_anadist_ds(), TClass::Draw(), TProofPlayerRemote::Finalize(), TFolder::FindObject(), TDataSet::FindObject(), TROOT::FindObject(), TPad::FindObject(), TROOT::FindSpecialObject(), RooRealVar::getBinning(), TMVA::DataSetManager::GetDataSetInfo(), TUnfoldSys::GetDeltaSysBackgroundScale(), TUnfoldSys::GetEmatrixSysBackgroundScale(), TUnfoldSys::GetEmatrixSysBackgroundUncorr(), TUnfoldSys::GetEmatrixSysSource(), TProofPlayer::GetOutput(), TAxis3D::GetPadAxis(), TPad::GetPrimitive(), TProofPlayerRemote::HandleTimer(), TProofPlayerSlave::HandleTimer(), TProof::Init(), RooAbsTestStatistic::initSimMode(), TStreamerInfo::InsertArtificialElements(), TAlienCollection::LookupSUrls(), TProofPlayerRemote::MergeOutput(), TMVA::Configurable::ParseOptions(), TMVA::TransformationHandler::PlotVariables(), TProof::PrepareInputDataFile(), R__GetClassIfKnown(), TGedFrame::SetDrawOption(), TFormula::SetName(), TStyle::SetOptFit(), and TStyle::SetOptStat().

TObject * TObject::FindObject ( const TObject obj) const
virtual

Must be redefined in derived classes.

This function is typically used with TCollections, but can also be used to find an object inside this object.

Reimplemented in TH1, TPad, TROOT, TDirectory, TGraph, TGraph2D, TDataSet, TCollection, TObjArray, TDataSetIter, TBtree, TList, TMap, TGeometry, RooLinkedList, THashTable, TListOfFunctions, THbookFile, TFolder, THashList, TListOfEnumsWithLock, TViewPubDataMembers, and TViewPubFunctions.

Definition at line 389 of file TObject.cxx.

Option_t * TObject::GetDrawOption ( ) const
virtual
Long_t TObject::GetDtorOnly ( )
static

Return destructor only flag.

Definition at line 1007 of file TObject.cxx.

Referenced by TClonesArray::Delete(), TClonesArray::Remove(), TClonesArray::RemoveAt(), and TClonesArray::RemoveRange().

const char * TObject::GetIconName ( ) const
virtual

Returns mime type name of object.

Used by the TBrowser (via TGMimeTypes class). Override for class of which you would like to have different icons for objects of the same class.

Reimplemented in TGMainFrame, TGeoVolume, TBranchElement, TBranch, TMethodBrowsable, TASImage, TKey, TSystemFile, and TVirtualBranchBrowsable.

Definition at line 425 of file TObject.cxx.

Referenced by TGFileBrowser::GetObjPicture(), and TGContainer::GetObjPicture().

const char * TObject::GetName ( ) const
virtual

Returns name of object.

This default method returns the class name. Classes that give objects a name should override this method.

Reimplemented in TMVA::MethodBase, TGMenuTitle, TPad, TSlaveInfo, TGeoDecayChannel, TSessionServerFrame, TPackageDescription, TVirtualPacketizer::TVirtualSlaveStat, TSessionDescription, TParticle, TVirtualPad, RooAbsCollection, TProofBenchRunDataRead, TGeoShape, TQueryDescription, TProofBenchRunCPU, TSlave, TGWindow, TMVA::Reader, TMVA::PDF, TPair< A, B >, THtml::TFileSysEntry, TEnvRec, TPBHandleDSType, TGLSAViewer, TGMenuEntry, TMVA::VariableTransformBase, TMapFile, TMCParticle, TGaxis, TQCommand, TCollection, TArchiveMember, TMVA::Factory, RooLinkedList, TMVA::DataSetInfo, TTVSession, TPBHistType, TTreePerfStats, TParameter< AParamType >, TMVA::FitterBase, TParameter< Long64_t >, TStructNode, TGPicture, TQConnection, TVirtualGeoTrack, TMVA::OptionBase, TPrimary, TMVA::Configurable, TVolumePosition, TPave, TPolyMarker3D, TSQLColumnData, TProofNodeInfo, TStatistic, TClassDocInfo, TSQLClassInfo, TRealData, TPolyLineShape, TPBReadType, TPaletteAxis, TDrawFeedback, TTVRecord, TEveGeoNode, TNamed, TDocDirective, ROOT::Internal::TNamedBranchProxy, TGLEmbeddedViewer, TStatsFeedback, RooCatType, TObjString, TOutputListSelectorDataMap, TSQLClassColumnInfo, TXMLAttr, and TGLPShapeObj.

Definition at line 415 of file TObject.cxx.

Referenced by TProofNodes::ActivateWorkers(), TGFileBrowser::Add(), TMapFile::Add(), TRootBrowserLite::Add(), RooNumIntConfig::addConfigSection(), TGFileBrowser::AddKey(), TSessionOutputFrame::AddObject(), TSessionInputFrame::AddObject(), TRootBrowserLite::AddToBox(), TLinearFitter::AddToDesign(), TRootBrowserLite::AddToTree(), TMVA::TransformationHandler::AddTransformation(), TDataSetManagerAliEn::AliEnWhereIs(), TTabCom::AllAgreeOnChar(), TDirectory::Append(), TSelHist::Begin(), TSelectorDraw::Begin(), TSelEvent::Begin(), TTree::Branch(), TAlienDirectory::Browse(), TDirectoryFile::Browse(), TDirectory::Browse(), TROOT::Browse(), TProofNodes::Build(), TStreamerInfo::BuildCheck(), TPad::BuildLegend(), TStreamerInfo::BuildOld(), RooSimPdfBuilder::buildPdf(), RooFormula::changeDependents(), TRootBrowserLite::Chdir(), TBufferFile::CheckByteCount(), TSelectorList::CheckDuplicateName(), RooStats::ProposalFunction::CheckParameters(), ClassImp(), TDirectoryFile::CloneObject(), TDirectory::CloneObject(), TNamed::Compare(), TCollection::Compare(), TParameter< Long64_t >::Compare(), TDSetElement::Compare(), RooAbsArg::Compare(), TTabCom::Complete(), TProfile::Copy(), TProfile2D::Copy(), TProfile3D::Copy(), TStructViewer::CountMembers(), THtml::CreateListOfClasses(), RooStats::HistFactory::ConfigParser::CreateMeasurementFromDriverNode(), TProof::CreateMerger(), TContextMenu::CreatePopupTitle(), TEveRefBackPtr::DecRefCount(), TLDAPEntry::DeleteAttribute(), TProof::DeleteParameters(), TGeoTreeDialog::DoSelect(), TStyleManager::DoSelectCanvas(), TGFileBrowser::DoubleClicked(), TCanvas::DrawEventStatus(), TProofPlayerRemote::DrawSelect(), RooFormula::dump(), TClass::Dump(), RooTrace::dump3(), TRootCanvas::EventInfo(), TRootBrowser::EventInfo(), TRootBrowserLite::ExecuteDefaultAction(), TView3D::ExecuteRotateView(), RooWorkspace::exportObj(), TEveElement::ExportSourceObjectToCINT(), TEveElementObjectPtr::ExportToCINT(), TAlienCollection::ExportXML(), TStatsFeedback::Feedback(), TDrawFeedback::Feedback(), TH2Poly::Fill(), TTreeCache::FillBuffer(), TTreeCacheUnzip::FillBuffer(), ROOT::Fit::FillData(), RooLinkedList::find(), TEveUtil::FindColorVar(), TRootContextMenu::FindHierarchy(), TList::FindObject(), TObjArray::FindObject(), TCollection::FindObject(), RooPlot::findObject(), TStreamerInfo::ForceWriteInfo(), FormatToolTip(), TLDAPEntry::GetAttribute(), TCollection::GetCollectionEntryName(), TProofBenchRunDataRead::GetDataSet(), TAlienCollection::GetDataset(), GetDataSets(), TGFontPool::GetFontFamilies(), TEveDigitSet::GetHighlightTooltip(), TUrl::GetIntValueFromOptions(), TRootSniffer::GetItem(), TAlienCollection::GetLFN(), TListOfFunctionTemplates::GetListForObject(), TListOfFunctions::GetListForObject(), RooStats::HistFactory::ConfigParser::GetMeasurementsFromXML(), TPolyLineShape::GetName(), TPair< A, B >::GetName(), TGFileBrowser::GetObjPicture(), TGContainer::GetObjPicture(), TGeoManager::GetPdgName(), TPad::GetPrimitive(), TGPrintDialog::GetPrinters(), TClass::GetRealData(), TAlienCollection::GetSize(), TAlienCollection::GetSURL(), TAlienCollection::GetTURL(), TUrl::GetValueFromOptions(), TGClient::GetWindowByName(), TRootSnifferScanRec::GoInside(), TProofServ::HandleCache(), TProofServ::HandleDataSets(), TProof::HandleInputMessage(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofServ::HandleSocketInput(), TProof::HandleSubmerger(), RooHashTable::hash(), ROOT::Detail::TSchemaRuleSet::TMatches::HasRuleWithSource(), ROOT::Detail::TSchemaRuleSet::TMatches::HasRuleWithTarget(), TSQLServer::HasTable(), TTabCom::Hook(), TRootBrowserLite::IconBoxAction(), TProofPlayerRemote::Incorporate(), RooLinkedList::IndexOf(), InitCounter(), RooRealIntegral::initNumIntegrator(), TStreamerInfo::InsertArtificialElements(), TInspectCanvas::InspectObject(), THttpServer::IsFileRequested(), TAlienCollection::IsOnline(), TLDAPEntry::IsReferral(), TAlienCollection::IsSelected(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TRootBrowserLite::ListTreeHighlight(), TChain::LoadTree(), TSQLStructure::LocateElementColumn(), TProofLockPath::Lock(), TProofOutputList::ls(), TFolder::ls(), TTask::ls(), TLine::ls(), TEllipse::ls(), TBox::ls(), TDirectoryFile::ls(), ls(), TDirectory::ls(), TTreePlayer::MakeClass(), TTreePlayer::MakeCode(), THistPainter::MakeCuts(), TProofBench::MakeDataSet(), TSPlot::MakeSPlot(), RooMsgService::StreamConfig::match(), THnBase::Merge(), TProofPlayerRemote::MergeFeedback(), TProofPlayerRemote::MergeOutput(), TFileMerger::MergeRecursive(), TProof::ModifyWorkerLists(), RooPlot::nameOf(), TFileIter::NextEventPut(), TProofPlayerRemote::NotifyMemory(), TFolder::Occurence(), TEditQueryFrame::OnBtnSave(), TNewQueryDlg::OnBtnSaveClicked(), TSessionOutputFrame::OnElementDblClicked(), TAlienFile::Open(), TAlienCollection::OpenAlienCollection(), TAlienCollection::OpenQuery(), TGraphPainter::PaintGraph(), THistPainter::PaintTH2PolyText(), TUrl::ParseOptions(), TArchiveFile::ParseUrl(), TAlienCollection::ParseXML(), RooAbsReal::plotOn(), RooAbsReal::plotOnWithErrorBand(), TMVA::TransformationHandler::PlotVariables(), TPointSet3D::PointSelected(), TQCanvasMenu::Popup(), TTreePlayer::Principal(), TProofOutputList::Print(), TLegendEntry::Print(), TProofNodes::Print(), TLine::Print(), TBox::Print(), RooCmdConfig::print(), TVector2::Print(), TQuaternion::Print(), TGLSelectRecord::Print(), RooWorkspace::Print(), Print(), TVector3::Print(), RooCustomizer::printMultiline(), RooPlot::printMultiline(), RooGrid::printName(), RooNameSet::printName(), RooPlot::printValue(), cling::printValue(), TStreamerInfo::PrintValueAux(), RooCmdConfig::process(), RooStudyManager::processBatchOutput(), TRootBrowserLite::ProcessMessage(), TProofServ::ProcessNext(), TRootSniffer::ProduceImage(), TTreePlayer::Query(), TStreamerInfoActions::ReadArraySTLMemberWiseChangedClass(), TStreamerInfo::ReadBuffer(), TStreamerInfoActions::ReadSTLMemberWiseChangedClass(), TTree::ReadStream(), TFile::ReadStreamerInfo(), TUDPSocket::RecvStreamerInfos(), TSocket::RecvStreamerInfos(), TProofServ::RegisterDataSets(), RooIntegrator2D::registerIntegrator(), RooBinIntegrator::registerIntegrator(), RooIntegrator1D::registerIntegrator(), RooMCIntegrator::registerIntegrator(), TPacketizer::Reset(), TPacketizerAdaptive::Reset(), RooAdaptiveGaussKronrodIntegrator1D::RooAdaptiveGaussKronrodIntegrator1D(), RooArgList::RooArgList(), RooArgSet::RooArgSet(), RooBinIntegrator::RooBinIntegrator(), RooIntegrator1D::RooIntegrator1D(), RooMCIntegrator::RooMCIntegrator(), RooSegmentedIntegrator1D::RooSegmentedIntegrator1D(), RooUnitTest::runCompTests(), SaveAs(), TLegendEntry::SaveEntry(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TGraphErrors::SavePrimitive(), TGraphAsymmErrors::SavePrimitive(), TGraphBentErrors::SavePrimitive(), TEfficiency::SavePrimitive(), TPad::SavePrimitive(), SavePrimitive(), TGraph2D::SavePrimitive(), TGraph::SavePrimitive(), TH1::SavePrimitiveHelp(), TRootSniffer::ScanCollection(), TLDAPServer::Search(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TProofDraw::SetDrawAtt(), TProofDraw::SetError(), TProofPlayerRemote::SetLastMergingMsg(), TEveGedNameFrame::SetModel(), TGedNameFrame::SetModel(), TSPlot::SetTreeSelection(), TFitEditor::ShowObjectName(), TProof::ShowParameters(), TSelHist::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelEvent::SlaveBegin(), TEveGedEditor::SpawnNewEditor(), TSQLFile::SQLApplyCommands(), TSQLFile::SQLDeleteAllTables(), TUnixSystem::StackTrace(), TAlienCollection::Stage(), TMVA::Results::Store(), TProofPlayerLite::StoreFeedback(), TProofPlayerRemote::StoreFeedback(), TProofPlayerRemote::StoreOutput(), RooNumIntFactory::storeProtoIntegrator(), TDocMacroDirective::SubProcess(), TEveTrack::TEveTrack(), TKeySQL::TKeySQL(), TKeyXML::TKeyXML(), RooWorkspace::unExport(), TProofLockPath::Unlock(), TSQLStructure::UnpackTObject(), TSQLStructure::UnpackTString(), while(), Write(), TDocParser::WriteMethod(), TDirectoryFile::WriteTObject(), TDirectory::WriteTObject(), and TGFileBrowser::XXExecuteDefaultAction().

char * TObject::GetObjectInfo ( Int_t  px,
Int_t  py 
) const
virtual

Returns string containing info about the object at position (px,py).

This method is typically overridden by classes of which the objects can report peculiarities for different positions. Returned string will be re-used (lock in MT environment).

Reimplemented in TF1, TH1, TGeoVolume, TASImage, TGeoNode, TF2, TParallelCoordVar, TGLParametricEquation, TVolume, TAxis3D, TNode, TGLHistPainter, TColorWheel, THistPainter, TGeoTrack, TVolumePosition, TFileDrawMap, TPolyLineShape, TVolumeView, TPaletteAxis, TGLTH3Composition, TGL5DDataSet, and TVirtualHistPainter.

Definition at line 444 of file TObject.cxx.

Referenced by TRootBrowserLite::AddToTree(), TCanvas::DrawEventStatus(), TRootCanvas::EventInfo(), TRootBrowser::EventInfo(), FormatToolTip(), and TPolyLineShape::GetObjectInfo().

Bool_t TObject::GetObjectStat ( )
static
virtual Option_t* TObject::GetOption ( ) const
inlinevirtual
const char * TObject::GetTitle ( ) const
virtual

Returns title of object.

This default method returns the class title (i.e. description). Classes that give objects a title should override this method.

Reimplemented in TGGroupFrame, TPad, TGTextButton, TParticle, TVirtualPad, TGTextEntry, TAxis, TGTextLBEntry, TPair< A, B >, TGLVEntry, TParallelCoordSelect, TMapFile, TASImage, TGaxis, TQCommand, TGLabel, TKey, TPrimary, TClassMenuItem, TEvePointSet, TPolyLineShape, TBaseClass, TEveGeoNode, TNamed, and TPaveLabel.

Definition at line 459 of file TObject.cxx.

Referenced by TLegend::AddEntry(), TRootBrowserLite::AddToTree(), TMVA::bdtcontrolplots(), TSelectorDraw::Begin(), TProofDraw::Begin(), TProofDrawHist::Begin(), TProofDrawProfile::Begin(), TProofDrawProfile2D::Begin(), TStreamerInfo::BuildCheck(), TRootSniffer::CheckRestriction(), ClassImp(), TProofDrawHist::DefVar(), TProofDrawProfile::DefVar(), TProofDrawProfile2D::DefVar(), TSpider::DeleteVariable(), RooTrace::destroy2(), TParallelCoordEditor::DoDeleteVar(), TPieEditor::DoTextChange(), TCanvas::DrawEventStatus(), TRootCanvas::EventInfo(), TRootBrowser::EventInfo(), TProofPerfAnalysis::FileDist(), TGListBox::FindEntry(), TGContainer::FindItem(), FormatToolTip(), TTree::GetAlias(), TVolumePosition::GetObjectInfo(), TGContainer::GetObjPicture(), TDictAttributeMap::GetPropertyAsString(), TPolyLineShape::GetTitle(), TPair< A, B >::GetTitle(), TGLEventHandler::HandleButton(), TGListTree::HandleMotion(), TInspectCanvas::InspectObject(), THttpServer::IsFileRequested(), TCling::LoadPCM(), TCollection::ls(), ls(), TOutputListSelectorDataMap::Merge(), TFileMerger::MergeRecursive(), TSessionFrame::OnDisablePackages(), TNewChainDlg::OnElementClicked(), TSessionFrame::OnEnablePackages(), TSessionFrame::OnUploadPackages(), TSpider::Paint(), TGraphPainter::PaintGraph(), TMVA::TransformationHandler::PlotVariables(), TVector2::Print(), TQuaternion::Print(), Print(), TVector3::Print(), RooGrid::printTitle(), RooNameSet::printTitle(), RooAbsCollection::printTitle(), cling::printValue(), RooCmdConfig::process(), TRootBrowserLite::ProcessMessage(), TDictAttributeMap::RemovePropertyString(), SaveAs(), SavePrimitive(), TRootSniffer::ScanCollection(), TGContainer::SearchPattern(), TRootControlBar::SetButtonState(), TFitEditor::SetFitObject(), TEveGedNameFrame::SetModel(), TGedNameFrame::SetModel(), TLegendEntry::SetObject(), THtml::ShortType(), TProof::ShowParameters(), TSelectorEntries::SlaveBegin(), TProofDrawHist::SlaveBegin(), TProofDrawEventList::SlaveBegin(), TProofDrawEntryList::SlaveBegin(), TProofDrawProfile::SlaveBegin(), TProofDrawProfile2D::SlaveBegin(), TProofDrawGraph::SlaveBegin(), TProofDrawPolyMarker3D::SlaveBegin(), TLegendEntry::TLegendEntry(), TNewChainDlg::UpdateList(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), and ROOT::Internal::TTreeReaderGenerator::WriteSelector().

UInt_t TObject::GetUniqueID ( ) const
virtual

Return the unique object id.

Definition at line 433 of file TObject.cxx.

Referenced by TRefTable::AddInternalIdxForPID(), TProcessUUID::AddUUID(), TFileDrawMap::AnimateTree(), TProcessID::AssignID(), TProcessID::Clear(), TSystem::CompileMacro(), TAxis::Copy(), TAxis::FindBin(), TAxis::FindFixBin(), TProcessUUID::FindUUID(), TAxis::GetBinLabel(), TStreamerElement::GetExecID(), TGeoMCGeometry::GetMaterial(), TGeoMCGeometry::GetMedium(), TRef::GetObject(), TRefProxy::GetObject(), TRefArray::GetObjectUID(), TGeoMedium::GetPointerName(), TGeoMatrix::GetPointerName(), TGeoMaterial::GetPointerName(), TGeoShape::GetPointerName(), TProcessID::GetProcessWithUID(), TBufferFile::GetTRefExecId(), TStreamerInfoActions::HandleReferencedTObject(), TRef::IsValid(), TGeoBuilder::Node(), TMessageHandler::Notify(), operator!=(), TRef::operator=(), operator==(), TFileDrawMap::PaintDir(), TMessageHandler::Print(), RooCmdConfig::process(), TProcessID::PutObjectWithID(), TLeafObject::ReadBasket(), TStreamerInfo::ReadBuffer(), TStreamerInfo::ReadBufferConv(), TProcessID::RecursiveRemove(), TProcessUUID::RemoveUUID(), TAxis::SaveAttributes(), TMonaLisaWriter::SendFileCheckpoint(), TMonaLisaWriter::SendFileCloseEvent(), TUDPSocket::SendProcessIDs(), TSocket::SendProcessIDs(), THbookBranch::SetAddress(), TAxis::SetBinLabel(), ROOT::TGenericClassInfo::SetFromTemplate(), TEveGeoShape::SetShape(), TClassTree::ShowHas(), TClassTree::ShowRef(), TStreamerInfo::WriteBufferAux(), TMessage::WriteProcessID(), and TFile::~TFile().

Bool_t TObject::HandleTimer ( TTimer timer)
virtual

Execute action in response of a timer timing out.

This method must be overridden if an object has to react to timers.

Reimplemented in TGHtml, TSessionViewer, TProofPlayerSuperMaster, TProofPlayerSlave, TProofPlayerRemote, TGPopupMenu, TTreeViewer, TGuiBldDragManager, TGTextEntry, TGFileContainer, TGDNDManager, TGTextView, TGScrollBar, TGTextEdit, TVirtualPacketizer, TGWindow, TGShutter, TGTextEditor, TGLEventHandler, TGToolTip, TGCommandPlugin, and TProofPlayerLite.

Definition at line 469 of file TObject.cxx.

Referenced by TTimer::Notify(), and TProofPlayer::Process().

ULong_t TObject::Hash ( ) const
virtual
void TObject::Info ( const char *  method,
const char *  msgfmt,
  ... 
) const
virtual

Issue info message.

Use "location" to specify the method where the warning occurred. Accepts standard printf formatting arguments.

Definition at line 892 of file TObject.cxx.

Referenced by TSelector::Abort(), TSelectorCint::Abort(), TProofServ::AcceptResults(), TRootSniffer::AccessField(), TAlienSystem::AccessPathName(), TXNetSystem::AccessPathName(), TFTP::AccessPathName(), TH1::Add(), TProof::AddDynamicPath(), TProof::AddEnvVar(), TProof::AddFeedback(), TGFileContainer::AddFile(), TProof::AddIncludePath(), TGLScenePad::AddObject(), TProofPlayerRemote::AddOutput(), TProofPlayerRemote::AddOutputObject(), TPacketizerAdaptive::AddProcessed(), TRootBrowserLite::AddToTree(), TProof::AddWorkers(), TThread::AfterCancel(), TAlienSystem::AlienFilestat(), TGeoPhysicalNode::Align(), TQueryResultManager::ApplyMaxQueries(), TProof::Archive(), TProof::AskForOutput(), TProofPlayer::AssertSelector(), TPacketizerUnit::AssignWork(), TProofMgr::AttachSession(), TServerSocket::Authenticate(), TSocket::Authenticate(), TAuthenticate::Authenticate(), TAuthenticate::AuthExists(), TCling::AutoLoad(), TCling::AutoParse(), TCling::AutoParseImplRecurse(), TSelectorCint::Begin(), TGLScenePad::BeginScene(), TODBCStatement::BindColumn(), TDataSetManagerFile::BrowseDataSets(), TGeoNavigator::BuildCache(), TStreamerInfo::BuildCheck(), TGeoNodeCache::BuildIdArray(), TPad::BuildLegend(), TProofProgressLog::BuildLogList(), TStreamerInfo::BuildOld(), TProof::BuildPackageOnClient(), TPacketizerAdaptive::CalculatePacketSize(), TAuthenticate::CatchTimeOut(), TAlienSystem::ChangeDirectory(), TFTP::ChangeDirectory(), TFTP::ChangePermission(), TFoam::CheckAll(), TGeoChecker::CheckBoundaryErrors(), TTree::CheckBranchAddressType(), TH1::CheckConsistentSubAxes(), TH1::CheckEqualAxes(), TGeoManager::CheckGeometry(), TAuthenticate::CheckHost(), TAlienCollection::CheckIfOnline(), TProofPlayer::CheckMemUsage(), TGeoNode::CheckOverlaps(), TGeoVolume::CheckOverlaps(), TGeoChecker::CheckOverlapsBySampling(), TAuthenticate::CheckProofAuth(), TWebFile::CheckProxy(), TDataSetManager::CheckStagedStatus(), TH1::Chi2TestX(), TAlienSystem::Chmod(), TGDMLWrite::ChooseObject(), TCondor::ClaimVM(), TBufferSQL2::ClassBegin(), TBufferSQL2::ClassEnd(), ClassImp(), TPosixThread::CleanUp(), TQueryResultManager::CleanupQueriesDir(), TRootSecContext::CleanupSecContext(), TQueryResultManager::CleanupSession(), TAuthenticate::ClearAuth(), TProof::ClearData(), TProof::ClearDataSetCache(), Memstat::TMemStatMng::Close(), TXNetFile::Close(), TXSocket::Close(), TGeoParallelWorld::CloseGeometry(), TGeoManager::CloseGeometry(), TProof::CloseProgressDialog(), TEveGedEditor::CloseWindow(), TApplicationRemote::Collect(), TProof::Collect(), TApplicationRemote::CollectInput(), TProof::CollectInputFrom(), TEfficiency::Combine(), TSystem::CompileMacro(), TXNetSystem::Connect(), TNetXNGSystem::ConsistentWith(), TXNetSystem::ConsistentWith(), TNetSystem::ConsistentWith(), TGeoManager::ConvertReflections(), TProofBench::CopyDataSet(), TTree::CopyEntries(), TSelHandleDataSet::CopyFile(), TProofLite::CopyMacroToCache(), TGeoManager::CountLevels(), TCivetweb::Create(), TFastCgi::Create(), TNetFile::Create(), TProofMgr::Create(), TXSocket::Create(), TSQLFile::CreateClassTable(), TDocOutput::CreateClassTypeDefs(), TGDMLWrite::CreateCommonBoolN(), TGDMLWrite::CreateCutTubeN(), TGDMLWrite::CreateElementN(), THtml::CreateListOfClasses(), TGDMLWrite::CreateMaterialN(), TProof::CreateMerger(), TGDMLWrite::CreateMixtureN(), TVirtualPacketizer::CreateNewPacket(), TPacketizerMulti::CreatePacketizer(), TGDMLWrite::CreatePolyconeN(), TSQLFile::CreateRawTable(), TProofServLite::CreateServer(), TXProofServ::CreateServer(), TProofServ::CreateServer(), TProofLite::CreateSymLinks(), TGDMLWrite::CreateTwistedTrapN(), TXNetFile::CreateXClient(), TGDMLWrite::CreateXtrusionN(), TXSocket::CtrlC(), TProof::DataSetStatus(), TAuthenticate::DecodeRSAPublic(), TDecompSparse::Decompose(), TBufferJSON::DecrementLevel(), TBufferXML::DecrementLevel(), TDirectoryFile::Delete(), TDirectory::Delete(), TThread::Delete(), TFile::Delete(), TFTP::DeleteDirectory(), TFTP::DeleteFile(), TEveGedEditor::DeleteWindow(), TEveCompositeFrameInMainFrame::Destroy(), TEveCompositeFrameInPack::Destroy(), TEveCompositeFrameInTab::Destroy(), TEveWindow::DestroyWindow(), TEveWindow::DestroyWindowAndSlot(), TSQLFile::DirReadKeys(), TXSocket::DisconnectSession(), TGeoShapeAssembly::DistFromInside(), TGraphAsymmErrors::Divide(), TGLViewer::DoDraw(), TProofProgressLog::DoLog(), TGLViewer::DoSecondarySelect(), TGLViewer::DoSelect(), TProof::DownloadPackage(), TGeoVolume::DrawOnly(), TTreePlayer::DrawScript(), TProofLite::DrawSelect(), TProof::DrawSelect(), TClass::Dump(), TEveGeoNode::DumpShapeTree(), TGDMLParse::ElCone(), TProof::EnablePackage(), TGLScenePad::EndScene(), TRootSniffer::ExecuteCmd(), TProofLite::ExistsDataSet(), TProof::ExistsDataSet(), TGeoVolume::Export(), TGeoManager::Export(), TDSet::ExportFileList(), TGDMLWrite::ExtractMaterials(), TBufferXML::ExtractReference(), TGDMLWrite::ExtractVolumes(), TDecompSparse::Factor(), TStatsFeedback::Feedback(), TDrawFeedback::Feedback(), TProof::Feedback(), TProofPerfAnalysis::FileDist(), TAuthenticate::FileExpand(), TTree::Fill(), TTreeCache::FillBuffer(), TProofChain::FillDrawAttributes(), TProofPerfAnalysis::FillFileDist(), TProofPerfAnalysis::FillFileDistOneSrv(), TDataSetManagerFile::FillLsDataSet(), TDataSetManager::FillMetaData(), TH1::FillRandom(), TProtoClass::FillTClass(), TEfficiency::FillWeighted(), TProofPlayerLite::Finalize(), TProofPlayerRemote::Finalize(), TProof::Finalize(), TQueryResultManager::FinalizeQuery(), TAxis::FindBin(), TPluginManager::FindHandler(), TCastorFile::FindServerAndPath(), TBinomialEfficiencyFitter::Fit(), TNetXNGFile::Flush(), TXNetFile::Flush(), TXSlave::FlushSocket(), RooStats::HLFactory::fParseLine(), TXNetSystem::FreeDirectory(), TFTP::FreeDirectory(), TThread::Function(), TSelEventGen::GenerateFiles(), TCling::GenerateTClass(), TGDMLWrite::GenName(), TAuthenticate::GenRSAKeys(), TSelectorCint::GetAbort(), TMonitor::GetActive(), TKDTreeBinning::GetBinCenter(), TKDTreeBinning::GetBinContent(), TKDTreeBinning::GetBinDensity(), TKDTreeBinning::GetBinEdges(), TKDTreeBinning::GetBinMaxEdges(), TKDTreeBinning::GetBinMinEdges(), TKDTreeBinning::GetBinsEdges(), TKDTreeBinning::GetBinsMaxEdges(), TKDTreeBinning::GetBinsMinEdges(), TKDTreeBinning::GetBinVolume(), TKDTreeBinning::GetBinWidth(), TSQLFile::GetBlobClassDataStmt(), TGeoManager::GetByteCount(), TAliEnFind::GetCollection(), TBranchElement::GetCollectionProxy(), TS3WebFile::GetCredentialsFromEnv(), TKDTreeBinning::GetDataMax(), TKDTreeBinning::GetDataMin(), TDataSetManagerFile::GetDataSet(), TDataSetManagerAliEn::GetDataSet(), TProofLite::GetDataSet(), TProof::GetDataSet(), TDataSetManagerFile::GetDataSetPath(), TProof::GetDataSetQuota(), TDataSetManagerFile::GetDataSets(), TProofLite::GetDataSets(), TProof::GetDataSets(), TAuthenticate::GetDefaultDetails(), THostAuth::GetDetails(), TKDTreeBinning::GetDimData(), TXNetSystem::GetDirEntry(), TFTP::GetDirEntry(), TEfficiency::GetEfficiencyErrorLow(), TEfficiency::GetEfficiencyErrorUp(), TBranchElement::GetEntry(), TEntryList::GetEntryList(), TPacketizerAdaptive::GetEstEntriesProcessed(), TFTP::GetFile(), TAlienResult::GetFileInfoList(), TGLiteResult::GetFileInfoList(), TFileCollection::GetFilesOnServer(), TFileCollection::GetFilesPerServer(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TWebFile::GetFromWeb10(), TAliEnFind::GetGridResult(), TDataSetManager::GetGroupQuota(), TDataSetManager::GetGroupUsed(), TWebFile::GetHead(), TAuthenticate::GetHostAuth(), TCondor::GetImage(), TXSocket::GetInterrupt(), TClass::GetListOfAllPublicMethods(), TClass::GetListOfMethods(), TProof::GetMissingFiles(), TEventIterUnit::GetNextEvent(), TEventIterTree::GetNextEvent(), TPacketizerMulti::GetNextPacket(), TPacketizerFile::GetNextPacket(), TPacketizerUnit::GetNextPacket(), TPacketizer::GetNextPacket(), TPacketizerAdaptive::GetNextPacket(), TEventIterUnit::GetNextPacket(), TEventIterTree::GetNextPacket(), TProofServ::GetNextPacket(), TProofPlayerRemote::GetNextPacket(), TPacketizerAdaptive::GetNextUnAlloc(), TOracleStatement::GetNumParameters(), TRefArray::GetObjectUID(), TKDTreeBinning::GetOneDimBinEdges(), TAlienCollection::GetOutputFileName(), TSelectorCint::GetOutputList(), TGLiteJob::GetOutputSandbox(), TNetXNGSystem::GetPathInfo(), TXNetSystem::GetPathInfo(), TFTP::GetPathInfo(), TXNetSystem::GetPathsInfo(), TGLViewer::GetPictureUsingFBO(), TNetFileStager::GetPrefix(), TXNetFileStager::GetPrefix(), TXSlave::GetProofdProtocol(), TProof::GetQueryMode(), TDataSetManager::GetQuota(), TAuthenticate::GetRandString(), TDocMacroDirective::GetResult(), TDocLatexDirective::GetResult(), TXNetFile::GetRootdProtocol(), TAliEnFind::GetSearchId(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), TDavixFile::GetSize(), TFileStager::GetStaged(), TProofLite::GetStagingStatusDataSet(), TGLiteJobStatus::GetStatus(), TSelectorCint::GetStatus(), TFile::GetStreamerInfoList(), TSQLFile::GetStreamerInfoList(), TOracleStatement::GetString(), TDataSetManager::GetSubDataSets(), TProofLite::GetTreeHeader(), TProof::GetTreeHeader(), TEventIterTree::GetTrees(), TTreeCacheUnzip::GetUnzipBuffer(), TAuthenticate::GetUserPasswd(), TCondor::GetVirtualMachines(), TCondor::GetVmInfo(), TXProofServ::GetWorkers(), TProofServ::GetWorkers(), TProof::GoAsynchronous(), TProof::GoMoreParallel(), TProof::GoParallel(), TGTable::GotoTableRange(), TProofBenchDataSet::Handle(), TEveManager::TExceptionHandler::Handle(), TProofServ::HandleArchive(), TGLEventHandler::HandleButton(), TProofServ::HandleCache(), TApplicationServer::HandleCheckFile(), TProofServ::HandleCheckFile(), TGLEventHandler::HandleConfigureNotify(), TProofServ::HandleDataSets(), TGLEventHandler::HandleDoubleClick(), TXProofServ::HandleError(), TXSlave::HandleError(), TGLEventHandler::HandleExpose(), TProofServLite::HandleFork(), TProofServ::HandleFork(), TProofPlayerSlave::HandleGetTreeHeader(), TProofPlayerRemote::HandleHistogram(), TXProofServ::HandleInput(), TXProofMgr::HandleInput(), TXSlave::HandleInput(), TProof::HandleInputMessage(), TGLEventHandler::HandleKey(), TProofServ::HandleLibIncPath(), TProof::HandleLibIncPath(), TGLEventHandler::HandleMotion(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofServ::HandleQueryList(), TProofServ::HandleRemove(), TProofServ::HandleRetrieve(), TXProofServ::HandleSigPipe(), TApplicationServer::HandleSigPipe(), TProofServ::HandleSigPipe(), TApplicationServer::HandleSocketInput(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TProof::HandleSubmerger(), TProofPlayerLite::HandleTimer(), TGLEventHandler::HandleTimer(), TVirtualPacketizer::HandleTimer(), TProofPlayerRemote::HandleTimer(), TProofPlayerSlave::HandleTimer(), TXProofServ::HandleUrgentData(), TApplicationServer::HandleUrgentData(), TProofServ::HandleUrgentData(), TProofServ::HandleWorkerLists(), TAuthenticate::HasHostAuth(), THtml::HaveDot(), if(), TGeoManager::Import(), TProofPlayerRemote::Incorporate(), TBufferJSON::IncrementLevel(), TOutputListSelectorDataMap::Init(), TXSlave::Init(), TDataSetManagerFile::Init(), TNetXNGFile::Init(), TSelectorCint::Init(), TProofOutputFile::Init(), TSlave::Init(), TXNetFile::Init(), TTreeCacheUnzip::Init(), TMonaLisaWriter::Init(), TDataSetManagerAliEn::Init(), TProof::Init(), TProofLite::InitDataSetManager(), TXSocket::InitEnvs(), TApplication::InitializeGraphics(), TBranchElement::InitializeOffsets(), TProof::InitMembers(), TProofPlayerRemote::InitPacketizer(), TDecompSparse::InitPivot(), TAuthenticate::InitRandom(), TPacketizerAdaptive::InitStats(), TXNetSystem::InitXrdClient(), TGeoNavigator::InspectState(), TF1::Integral(), TXSlave::Interrupt(), TSlave::Interrupt(), TApplicationRemote::Interrupt(), TProof::IsDataReady(), TGDMLWrite::IsNullParam(), TXNetSystem::IsOnline(), TXNetFile::IsOpen(), TNetXNGFileStager::IsStaged(), TSelector::IsStandardDraw(), TProofPlayerRemote::JoinProcess(), TBufferJSON::JsonWriteMember(), TBufferJSON::JsonWriteObject(), TFoam::LinkCells(), TEventIterTree::Load(), TSystem::Load(), TProof::Load(), TEventIter::LoadDir(), TPluginManager::LoadHandlerMacros(), TPluginManager::LoadHandlersFromPluginDirs(), TCling::LoadLibraryMap(), TProof::LoadPackage(), TProof::LoadPackageOnClient(), TCling::LoadPCM(), TDavixSystem::Locate(), TNetXNGSystem::Locate(), TXNetSystem::Locate(), TNetXNGFileStager::LocateCollection(), TXNetFileStager::LocateCollection(), TQueryResultManager::LocateQuery(), TLockFile::Lock(), TGeoGlobalMagField::Lock(), TProofLockPath::Lock(), TXProofServ::LockSession(), TQueryResultManager::LockSession(), TProof::LogMessage(), TProof::LogViewer(), TAlienCollection::LookupSUrls(), TEveCompositeFrameInMainFrame::MainFrameClosed(), TTreePlayer::MakeClass(), TProofBench::MakeDataSet(), TCanvas::MakeDefCanvas(), TAlienSystem::MakeDirectory(), TXNetSystem::MakeDirectory(), TFTP::MakeDirectory(), TFile::MakeProject(), TProofPlayerLite::MakeSelector(), TProof::MarkBad(), TStatus::Merge(), TProofOutputFile::Merge(), TProofPlayerRemote::MergeFeedback(), TProofPlayerRemote::MergeOutput(), TProofPlayerRemote::MergeOutputFiles(), TFileMerger::MergeRecursive(), TProof::ModifyWorkerLists(), TDataSetManager::MonitorUsedSpace(), TPacketizer::NextActiveNode(), TPacketizerAdaptive::NextActiveNode(), TPacketizerAdaptive::NextNode(), TOracleStatement::NextResultRow(), TPacketizer::NextUnAllocNode(), TGeoBuilder::Node(), TSelectorCint::Notify(), TARInterruptHandler::Notify(), TIdleTOTimer::Notify(), TProofOutputFile::NotifyError(), TProofPlayerRemote::NotifyMemory(), TAlienFile::Open(), TXNetFile::Open(), TFile::Open(), TProof::Open(), TAlienSystem::OpenDirectory(), TXNetSystem::OpenDirectory(), TFTP::OpenDirectory(), TNetSystem::OpenDirectory(), TFile::OpenFromCache(), TFoamVect::operator=(), TFoamCell::operator=(), TPerfStats::PacketEvent(), TXSlave::ParseBuffer(), TProof::ParseConfigField(), TS3WebFile::ParseOptions(), TXNetFile::ParseOptions(), TDataSetManager::ParseUri(), TFileMerger::PartialMerge(), TBufferJSON::PerformPostProcessing(), TXSocket::PickUpReady(), TProofMgr::Ping(), TXSocket::Ping(), TMySQLServer::PingVerify(), TProofLite::PollForNewWorkers(), TProof::PollForNewWorkers(), TXSocket::PopUpSpare(), TXSocket::PostMsg(), TXNetSystem::Prepare(), TRootSecContext::Print(), TSecContext::Print(), TAlienCollection::Print(), THostAuth::Print(), TProofOutputFile::Print(), TGPicturePool::Print(), TPad::Print(), TGeoParallelWorld::PrintDetectedOverlaps(), TFTP::PrintDirectory(), THostAuth::PrintEstablished(), TDataSetManager::PrintUsedSpace(), TProofPlayerLite::Process(), TSelHandleDataSet::Process(), TSelEventGen::Process(), TSelectorCint::Process(), TSelVerifyDataSet::Process(), TProofLite::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TProof::Process(), TSelectorCint::ProcessCut(), TSelectorCint::ProcessFill(), TFormula::ProcessFormula(), TApplicationServer::ProcessLine(), TApplication::ProcessLine(), TProofServ::ProcessNext(), TApplication::ProcessRemote(), TXSocket::ProcessUnsolicitedMsg(), TRootSniffer::ProduceBinary(), TRootSniffer::ProduceImage(), TProofPlayerRemote::Progress(), TProofPlayerSuperMaster::Progress(), TProof::Progress(), TAuthenticate::ProofAuthSetup(), TThread::Ps(), TXSocket::PushBackSpare(), TFTP::PutFile(), TProof::QueryResultReady(), TNetXNGFile::ReadBuffer(), TDavixFile::ReadBuffer(), TXNetFile::ReadBuffer(), TDavixFile::ReadBufferAsync(), TXNetFile::ReadBufferAsync(), TFileCacheRead::ReadBufferExtNormal(), TRFIOFile::ReadBuffers(), TNetFile::ReadBuffers(), TDavixFile::ReadBuffers(), TXNetFile::ReadBuffers(), TBufferXML::ReadClass(), TProofResourcesStatic::ReadConfigFile(), TZIPFile::ReadDirectory(), TBufferSQL2::ReadFastArray(), TDataSetManager::ReadGroupConfig(), TXMLFile::ReadKeysList(), TBufferXML::ReadObjectAny(), TKey::ReadObjectAny(), TBufferFile::ReadObjectAny(), TAuthenticate::ReadRootAuthrc(), TCling::ReadRootmapFile(), TTree::ReadStream(), TFile::ReadStreamerInfo(), TBufferJSON::ReadVersion(), TBufferXML::ReadVersion(), TProofProgressLog::Rebuild(), TXUnixSocket::Reconnect(), TXSocket::Reconnect(), TQueryResult::RecordEnd(), TFile::Recover(), THtml::TFileSysDir::Recurse(), TUDPSocket::RecvProcessIDs(), TSocket::RecvProcessIDs(), TUDPSocket::RecvStreamerInfos(), TSocket::RecvStreamerInfos(), TProof::RedirectWorker(), TDataSetManagerFile::RegisterDataSet(), TProofLite::RegisterDataSet(), TProof::RegisterDataSet(), TProofServ::RegisterDataSets(), TCling::RegisterModule(), TProofPlayer::ReinitSelector(), TCondor::Release(), TSelHandleDataSet::ReleaseCache(), TXProofServ::ReleaseWorker(), TEntryList::RelocatePaths(), TXSocket::RemoteTouch(), TProofLite::Remove(), TProof::Remove(), TProofLite::RemoveDataSet(), TFileCollection::RemoveDuplicates(), TProof::RemoveDynamicPath(), TProof::RemoveIncludePath(), TQueryResultManager::RemoveQuery(), TProof::RemoveWorkers(), TFTP::RenameFile(), TXNetFile::ReOpen(), TGLEventHandler::Repaint(), TGeoManager::ReplaceVolume(), TGLViewer::RequestDraw(), TProofLite::RequestStagingDataSet(), TPacketizerAdaptive::Reset(), TSelectorCint::ResetAbort(), TTreeCacheUnzip::ResetCache(), TProof::ResetProgressDialog(), TFoam::ResetPseRan(), TFoam::ResetRho(), TProofServ::RestartComputeTime(), TProofLogElem::Retrieve(), TProof::Retrieve(), TAuthenticate::RfioAuth(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TThread::Run(), TDocOutput::RunDot(), TGeoOverlap::SampleOverlap(), SaveAs(), TParallelCoord::SaveEntryLists(), TProof::SaveInputData(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TGLViewer::SavePictureUsingFBO(), TQueryResult::SaveSelector(), TCanvas::SaveSource(), TProofProgressLog::SaveToFile(), TXMLFile::SaveToFile(), TParallelCoord::SaveTree(), TProof::SaveWorkerInfo(), TDataSetManager::ScanDataSet(), TDataSetManager::ScanFile(), TUnfold::ScanLcurve(), TAuthenticate::SecureRecv(), TAuthenticate::SecureSend(), TDavixFile::Seek(), TMonitor::Select(), TXSocket::Send(), TProofServ::SendAsynMessage(), TApplicationServer::SendCanvases(), TSlave::SendCoordinator(), TXSocket::SendCoordinator(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TApplicationRemote::SendFile(), TProof::SendFile(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TProof::SendInputDataFile(), TProofServ::SendLogFile(), TProofServ::SendParallel(), TSQLMonitoringWriter::SendParameters(), TMonaLisaWriter::SendParameters(), TUDPSocket::SendProcessIDs(), TSocket::SendProcessIDs(), TXSocket::SendRaw(), TProofServ::SendResults(), TAuthenticate::SendRSAPublicKey(), TProofPlayerRemote::SendSelector(), TUDPSocket::SendStreamerInfos(), TSocket::SendStreamerInfos(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TTreeCacheUnzip::SendUnzipStartSignal(), TProofCondor::SetActive(), TSlave::SetAlias(), TAxis::SetAlphanumeric(), TUnfold::SetConstraint(), TOutputListSelectorDataMap::SetDataMembers(), TProofLite::SetDataSetTreeName(), TProof::SetDataSetTreeName(), TTreeCache::SetEntryRange(), TAuthenticate::SetEnvironment(), TAlienCollection::SetExportUrl(), TGeoGlobalMagField::SetField(), TBackCompFitter::SetFitMethod(), TSelectorCint::SetFuncProto(), TVirtualPacketizer::SetInitTime(), TSelectorCint::SetInputList(), TXSlave::SetInterruptHandler(), TGeoManager::SetMaxVisNodes(), TGSplitButton::SetMenuState(), TProofPlayerRemote::SetMerging(), TKDTreeBinning::SetNBins(), TSelectorCint::SetObject(), TSelectorCint::SetOption(), TProofBench::SetOutFile(), TProofOutputFile::SetOutputFileName(), TProof::SetParallelSilent(), TProof::SetPerfTree(), TApplicationRemote::SetPortParam(), TProof::SetQueryMode(), TProofLite::SetQueryRunning(), TProofServ::SetQueryRunning(), TAuthenticate::SetRSAPublic(), TProofQueryResult::SetRunning(), TProofMonSender::SetSendOptions(), TCondor::SetState(), TProofPlayer::SetStopTimer(), TBufferJSON::SetStreamerElementNumber(), TGSplitButton::SetText(), TGeoManager::SetTopVolume(), TProofServLite::Setup(), TXProofServ::Setup(), TProofServ::Setup(), TProofServ::SetupCommon(), TProofPlayerLite::SetupFeedback(), TProofPlayerRemote::SetupFeedback(), TProofServLite::SetupOnFork(), TProof::SetupWorkersEnv(), TGLViewer::SetViewport(), TGeoManager::SetVisLevel(), TBufferXML::ShiftStack(), TAuthenticate::Show(), TServerSocket::ShowAcceptOptions(), TProof::ShowDataSetCache(), TProof::ShowDataSetQuota(), TProofLite::ShowDataSets(), TProof::ShowDataSets(), TProof::ShowFeedback(), TProof::ShowLog(), TProof::ShowMissingFiles(), TFile::ShrinkCacheFileDir(), TGTable::ShrinkColumns(), TGTable::ShrinkRows(), TSelectorCint::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), TSelEventGen::SlaveTerminate(), TSelectorCint::SlaveTerminate(), TSelVerifyDataSet::SlaveTerminate(), TDecompSparse::Solve(), TKDTreeBinning::SortOneDimBinEdges(), TDSet::SplitEntryList(), TSQLFile::SQLMaximumValue(), TBufferSQL2::SqlObjectData(), TBufferSQL2::SqlObjectInfo(), TSQLFile::SQLObjectsInfo(), TSQLFile::SQLQuery(), TBufferSQL2::SqlReadObject(), TBufferSQL2::SqlReadObjectDirect(), TSQLFile::SQLStatement(), TAuthenticate::SshAuth(), TAuthenticate::SshError(), TAlienCollection::Stage(), TProofSuperMaster::StartSlaves(), TProofCondor::StartSlaves(), TProof::StartSlaves(), TTreeCacheUnzip::StartThreadUnzip(), TProof::StartupMessage(), TAlienCollection::Status(), TProofPlayerRemote::StopFeedback(), TProofPlayerSlave::StopFeedback(), TXSlave::StopProcess(), TProofPlayer::StopProcess(), TProof::StopProcess(), TProofPlayerLite::StoreFeedback(), TProofPlayerRemote::StoreFeedback(), TProofPlayerRemote::StoreOutput(), TSQLFile::StreamKeysForDirectory(), TBufferJSON::StreamObject(), TBufferXML::StreamObject(), TGLite::Submit(), TAlienJDL::SubmitTest(), TDocMacroDirective::SubProcess(), TGLViewer::SwitchColorSet(), TXNetFile::SysClose(), TXNetFile::SysOpen(), TXNetFile::SysStat(), TAFS::TAFS(), TApplicationRemote::TApplicationRemote(), TAuthenticate::TAuthenticate(), TEfficiency::TEfficiency(), TProofServLite::Terminate(), TXProofServ::Terminate(), TSelectorCint::Terminate(), TProofServ::Terminate(), TProof::TerminateWorker(), TEventIter::TEventIter(), TF1::TF1(), TFile::TFile(), TFileCacheWrite::TFileCacheWrite(), TFoamVect::TFoamVect(), TGeoManager::TGeoManager(), TGL5DDataSet::TGL5DDataSet(), TGLite::TGLite(), TOracleServer::TOracleServer(), TPerfStats::TPerfStats(), TProofMgr::TProofMgr(), TProofResourcesStatic::TProofResourcesStatic(), TProofServ::TProofServ(), TMultiLayerPerceptron::Train(), TCling::TransactionRollback(), TProofServ::TruncateLogFile(), TThread::TThread(), TUnfold::TUnfold(), TXNetFile::TXNetFile(), TSVDUnfold::Unfold(), TXNetSystem::Unlink(), TProofServ::UnloadPackage(), TProofServ::UnloadPackages(), TProofLockPath::Unlock(), TTreeCacheUnzip::UnzipBuffer(), TTreeCacheUnzip::UnzipCache(), TProof::UpdateDialog(), TGLCamera::UpdateInterest(), TProofServ::UpdateSessionStatus(), TParallelMergingFile::UploadAndReset(), TProofMgr::UploadFiles(), TProof::UploadPackage(), TProofSuperMaster::ValidateDSet(), TProof::ValidateDSet(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TProofLite::VerifyDataSet(), TProof::VerifyDataSet(), TProof::VerifyDataSetParallel(), TSQLFile::VerifyObjectTable(), TSelectorCint::Version(), TGeoManager::Voxelize(), TSemaphore::Wait(), TGeoManager::Weight(), while(), TBufferXML::WorkWithClass(), TBufferJSON::WorkWithClass(), TBufferSQL2::WorkWithElement(), TBufferXML::WorkWithElement(), TBufferJSON::WorkWithElement(), TFile::Write(), TNetXNGFile::WriteBuffer(), TDavixFile::WriteBuffer(), TXNetFile::WriteBuffer(), TBufferXML::WriteClass(), TBufferJSON::WriteClassBuffer(), TBufferJSON::WriteClones(), TDataSetManagerFile::WriteDataSet(), TBufferJSON::WriteFastArray(), TGDMLWrite::WriteGDMLfile(), TBufferJSON::WriteObject(), TBufferXML::WriteObjectClass(), TBufferJSON::WriteObjectClass(), TFile::WriteProcessID(), TFile::WriteStreamerInfo(), TSQLFile::WriteStreamerInfo(), TBufferXML::WriteVersion(), TPad::x3d(), TBufferXML::XmlReadBlock(), TBufferXML::XmlReadObject(), TBufferXML::XmlReadValue(), TBufferXML::XmlWriteObject(), TAlienFile::~TAlienFile(), TCondor::~TCondor(), TDirectory::~TDirectory(), TDirectoryFile::~TDirectoryFile(), TEveCompositeFrame::~TEveCompositeFrame(), TEveCompositeFrameInMainFrame::~TEveCompositeFrameInMainFrame(), TEveGedEditor::~TEveGedEditor(), TEveWindow::~TEveWindow(), TFile::~TFile(), TFoamVect::~TFoamVect(), TLockFile::~TLockFile(), Memstat::TMemStatMng::~TMemStatMng(), and TThread::~TThread().

Bool_t TObject::InheritsFrom ( const char *  classname) const
virtual

Returns kTRUE if object inherits from class "classname".

Reimplemented in TClass.

Definition at line 487 of file TObject.cxx.

Referenced by TH1Editor::AcceptModel(), TH2Editor::AcceptModel(), RooFFTConvPdf::actualObservables(), TGFileBrowser::Add(), TProfile::Add(), TQCommand::Add(), TProfile2D::Add(), TProfile3D::Add(), TQUndoManager::Add(), TRootBrowserLite::Add(), TRootBrowser::Add(), TLegend::AddEntry(), TFileMerger::AddFile(), TChain::AddFile(), TGCanvas::AddFrame(), TGMenuBar::AddFrameBefore(), TRootGuiBuilder::AddMacro(), TRootBrowserLite::AddToBox(), TRootBrowserLite::AddToTree(), RooWorkspace::allCatFunctions(), RooWorkspace::allCats(), RooWorkspace::allFunctions(), RooWorkspace::allPdfs(), RooWorkspace::allResolutionModels(), RooWorkspace::allVars(), TDialogCanvas::Apply(), TCollection::AssertClass(), TMVA::MethodBase::BaseDir(), TMVA::bdtcontrolplots(), TSelectorDraw::Begin(), TGMenuBar::BindHotKey(), TTree::Branch(), TTreeFormula::BranchHasMethod(), THbookKey::Browse(), TDirectoryFile::Browse(), TKey::Browse(), TCurlyLine::Build(), TPad::BuildLegend(), TGuiBldDragManager::CanChangeLayout(), TGuiBldDragManager::CanChangeLayoutOrder(), TPad::cd(), TTree::ChangeFile(), TGFrame::ChangeOptions(), TGuiBldEditor::ChangeSelected(), TGCompositeFrame::ChangeSubframesBackground(), TGFileBrowser::Chdir(), TTree::CheckBranchAddressType(), TFractionFitter::CheckConsistency(), TGuiBldNameFrame::CheckItems(), TGCommandPlugin::CheckRemote(), TGFileBrowser::CheckRemote(), TGuiBldDragManager::CheckTargetAtPoint(), TGFileBrowser::Clicked(), TGuiBldDragManager::CloneEditable(), THnBase::CloneEmpty(), TTree::CloneTree(), TROOT::CloseFiles(), TRootBrowser::CloseTabs(), TTreeCloner::CollectBranches(), TGuiBldDragManager::Compact(), RooThreshEntry::Compare(), ContainsTImage(), TTree::CopyAddresses(), TPad::CopyBackgroundPixmaps(), TPad::CopyPixmaps(), TTreePlayer::CopyTree(), RooFactoryWSTool::createArg(), THnBase::CreateHnAny(), TTreeFormula::DefinedVariable(), TSQLStructure::DefineElementColumnType(), TGuiBldDragManager::DeleteFrame(), TPaveText::DeleteText(), THistPainter::DistancetoPrimitive(), TGraphPainter::DistancetoPrimitiveHelper(), TProfile::Divide(), TProfile2D::Divide(), TProfile3D::Divide(), TGColorDialog::DoPreview(), TH2::DoProfile(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH3::DoProjectProfile2D(), TGTextEntry::DoRedraw(), TGuiBldDragManager::DoResize(), TGraphEditor::DoShape(), TPieEditor::DoTextChange(), TGFileBrowser::DoubleClicked(), RooPlot::Draw(), TTable::Draw(), TGScrollBarElement::DrawBorder(), TGButtonGroup::DrawBorder(), TGGroupFrame::DrawBorder(), TGuiBldDragManager::DrawGrabRectangles(), TGuiBldDragManager::Drop(), TQRootCanvas::dropEvent(), TPaveText::EditText(), TRootGuiBuilder::EnableSelectedButtons(), TGComboBox::EnableTextInput(), TLinearFitter::Eval(), TLinearFitter::EvalRobust(), RooRealIntegral::evaluate(), TGroupButton::ExecuteAction(), TRootBrowserLite::ExecuteDefaultAction(), TPad::ExecuteEventAxis(), TGraphPainter::ExecuteEventHelper(), TDataSetManager::FillMetaData(), TGuiBldDragManager::FindCompositeFrame(), TRootGuiBuilder::FindEditableMdiFrame(), TFolder::FindFullPathName(), TOutputListSelectorDataMap::FindInList(), TGuiBldDragManager::FindLayoutFrame(), TTreeFormula::FindLeafForExpression(), TGuiBldDragManager::FindMdiFrame(), TPad::FindObject(), TFolder::FindObjectAny(), TDirectory::FindObjectAny(), TEfficiency::Fit(), TStreamerInfo::GenerateIncludes(), TDirectoryFile::Get(), TDirectory::Get(), ROOT::Internal::GetArrayType(), TFitter::GetConfidenceIntervals(), TBackCompFitter::GetConfidenceIntervals(), TLinearFitter::GetConfidenceIntervals(), TFormLeafInfoReference::GetCounterValue(), TDirectory::GetDirectory(), TGuiBldDragManager::GetFramesInside(), TTreeFormula::GetLeafWithDatamember(), TFormLeafInfo::GetLocalValuePointer(), TFormLeafInfoCollectionObject::GetLocalValuePointer(), TFormLeafInfoClones::GetLocalValuePointer(), TFormLeafInfoCollection::GetLocalValuePointer(), TGuiBldNameFrame::GetMdi(), TPaveText::GetObject(), TDirectoryFile::GetObjectChecked(), TDirectory::GetObjectChecked(), THistPainter::GetObjectInfo(), TGFileBrowser::GetObjPicture(), TGContainer::GetObjPicture(), TPad::GetPad(), TAxis3D::GetPadAxis(), TPad::GetPrimitive(), TF1::GetSave(), TPaveText::GetSize(), TStreamerInfo::GetStreamerElement(), TTreeFormula::GetValueFromMethod(), TTreeFormula::GetValuePointerFromMethod(), TGedEditor::GlobalSetModel(), TRootSnifferScanRec::GoInside(), TGuiBldDragManager::HandleAlignment(), TGTextEntry::HandleButton(), TGLBContainer::HandleButton(), TGViewPort::HandleConfigureNotify(), TGScrollBarElement::HandleCrossing(), TGuiBldDragManager::HandleDelete(), TRootEmbeddedCanvas::HandleDNDDrop(), TRootCanvas::HandleDNDDrop(), TGTextView::HandleDNDDrop(), TGTextEntry::HandleDoubleClick(), TGuiBldDragManager::HandleGrid(), TGHtml::HandleHtmlInput(), TCanvas::HandleInput(), TMessageHandler::HandleMessage(), TGTextEntry::HandleMotion(), TGLBContainer::HandleMotion(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofPlayer::HandleRecvHisto(), TGuiBldDragManager::HandleReturn(), TProofServ::HandleSocketInput(), TGuiBldDragManager::HandleUpdateSelected(), TFitEditor::HasFitFunction(), TPad::HighLight(), TGuiBldDragManager::HighlightCompositeFrame(), TRootBrowserLite::IconBoxAction(), RooHistFunc::importWorkspaceHook(), RooHistPdf::importWorkspaceHook(), TProofPlayerRemote::Incorporate(), TOutputListSelectorDataMap::Init(), TClassTree::Init(), TGTextEntry::Init(), TBranch::Init(), TGRadioButton::Init(), InitCounter(), TRecorderReplaying::Initialize(), RooAbsTestStatistic::initSimMode(), TGButtonGroup::Insert(), TGLPlot3D::InstantiatePlot(), TGTextEntry::IsCursorOutOfFrame(), TQCommand::IsEqual(), RooLinearVar::isJacobianOK(), TTreeFormula::IsLeafString(), TFileIter::IsOpen(), TEveGListTreeEditorFrame::ItemDblClicked(), TBufferJSON::JsonStreamCollection(), layoutFrame(), TGuiBldHintsEditor::LayoutSubframes(), TRootBrowserLite::ListTreeHighlight(), TChain::LoadTree(), THistPainter::MakeChopt(), TTreePlayer::MakeClass(), TTreePlayer::MakeCode(), THistPainter::MakeCuts(), TTreeViewer::MapBranch(), TGuiBldNameFrame::MapItems(), RooMsgService::StreamConfig::match(), TGuiBldHintsEditor::MatrixLayout(), TGuiBldDragManager::Menu4Frame(), TEventList::Merge(), TSeqCollection::Merge(), TPolyMarker::Merge(), TPolyLine3D::Merge(), TPolyMarker3D::Merge(), TPolyLine::Merge(), TEntryList::Merge(), TLinearFitter::Merge(), TTree::Merge(), TFileMerger::MergeRecursive(), TTree::MergeTrees(), MonitoredTFileInfo(), TStructViewerGUI::MouseOverSlot(), TGTextEntry::NewMark(), TFileIter::NextEventPut(), TGLScenePad::ObjectPaint(), TCreatePrimitives::Pad(), TGFileBrowser::PadModified(), THStack::Paint(), THistPainter::Paint(), TMultiGraph::Paint(), TASImage::Paint(), TEfficiency::Paint(), TPad::Paint(), THistPainter::PaintBarH(), TPad::PaintBorder(), THistPainter::PaintBoxes(), TGraph2DPainter::PaintContour(), THistPainter::PaintFunction(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGraphPolar(), TGraphPainter::PaintGraphSimple(), THistPainter::PaintH3(), TGraphPainter::PaintHelper(), TLatex::PaintLatex(), THistPainter::PaintLegoAxis(), TButton::PaintModified(), TPad::PaintModified(), TMultiGraph::PaintPads(), TLegend::PaintPrimitives(), THistPainter::PaintSpecialObjects(), THistPainter::PaintStat(), THistPainter::PaintStat2(), THistPainter::PaintStat3(), TGraphPainter::PaintStats(), THistPainter::PaintTable(), THistPainter::PaintText(), THistPainter::PaintTitle(), TTreeFormula::ParseWithLeaf(), TCanvas::Pick(), TPad::Pick(), TGuiBldDragManager::PlaceFrame(), RooWorkspace::Print(), THnBase::Print(), RooAbsArg::printComponentTree(), RooPlot::printMultiline(), RooPlot::printValue(), TAttTextEditor::ProcessMessage(), TGComboBox::ProcessMessage(), TRootBrowserLite::ProcessMessage(), TGColorDialog::ProcessMessage(), TGListBox::ProcessMessage(), TProofServ::ProcessNext(), TRootSniffer::ProduceImage(), TRootGuiBuilder::PropagateBgndColor(), TGuiBldDragManager::RaiseMdiFrame(), TASImage::ReadImage(), TFileIter::ReadObj(), RooProdPdf::rearrangeProduct(), TH1::Rebin(), TGuiBldDragManager::RecognizeGesture(), TGFileBrowser::RecursiveRemove(), TPad::RedrawAxis(), TRecorderReplaying::RegisterWindow(), TGButtonGroup::ReleaseButtons(), TRootBrowser::RemoveTab(), TProof::RemoveWorkers(), TGuiBldDragManager::ReparentFrames(), TBranchElement::ResetDeleteObject(), TPad::ResizePad(), RooChi2Var::RooChi2Var(), RooMinimizerFcn::RooMinimizerFcn(), RooMinuit::RooMinuit(), RooRealIntegral::RooRealIntegral(), RooSuperCategory::RooSuperCategory(), TDirectoryFile::Save(), TF1::Save(), TProofPlayer::SavePartialResults(), TGShapedFrame::SavePrimitive(), TGraphErrors::SavePrimitive(), TGraphAsymmErrors::SavePrimitive(), TGToolBar::SavePrimitive(), TGraphBentErrors::SavePrimitive(), TGButtonGroup::SavePrimitive(), TGVButtonGroup::SavePrimitive(), TGTab::SavePrimitive(), TEfficiency::SavePrimitive(), TGHButtonGroup::SavePrimitive(), TGContainer::SavePrimitive(), TGSplitFrame::SavePrimitive(), TPad::SavePrimitive(), TGraph2D::SavePrimitive(), TGraph::SavePrimitive(), TGFileContainer::SavePrimitive(), TGLVContainer::SavePrimitive(), TGCompositeFrame::SavePrimitive(), TGVerticalFrame::SavePrimitive(), TGListTree::SavePrimitive(), TGHorizontalFrame::SavePrimitive(), TGMainFrame::SavePrimitive(), TGTransientFrame::SavePrimitive(), TH1::SavePrimitiveHelp(), TGCompositeFrame::SavePrimitiveSubframes(), TCanvas::SaveSource(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TTreePlayer::Scan(), TRootSniffer::ScanObjectChilds(), TGTextEntry::ScrollByChar(), TGeoManagerEditor::SelectedSlot(), TGuiBldDragManager::SelectFrame(), TMonaLisaWriter::SendFileCloseEvent(), TRootControlBar::SetButtonState(), TGCompositeFrame::SetCleanup(), TGListView::SetContainer(), TGViewPort::SetContainer(), TGTextEntry::SetCursorPosition(), TGTextEntry::SetEchoMode(), TPad::SetEditable(), TRootControlBar::SetFont(), TGViewPort::SetHPos(), TGuiBldHintsEditor::SetMatrixSep(), TCurlyLineEditor::SetModel(), TAttLineEditor::SetModel(), TAttMarkerEditor::SetModel(), TF1Editor::SetModel(), TAttTextEditor::SetModel(), TPadEditor::SetModel(), TPieEditor::SetModel(), TGeoMaterialEditor::SetModel(), TGeoNodeEditor::SetModel(), TGeoVolumeEditor::SetModel(), TGedEditor::SetModel(), TGeoMixtureEditor::SetModel(), TGLObject::SetModelCheckClass(), TFitEditor::SetObjectType(), TRootControlBar::SetTextColor(), TTreeReader::SetTree(), TGeoManager::SetVisibility(), TGViewPort::SetVPos(), TDirectoryFile::SetWritable(), TRootCanvas::ShowEditor(), TGeoVolume::SortNodes(), RooProdPdf::specializeIntegral(), RooAbsData::split(), TGFrame::StartGuiBuilding(), TMVA::Results::Store(), HFit::StoreAndDrawFitFunction(), TTreeFormula::StringToNumber(), TGuiBldDragManager::SwitchEditable(), TGuiBldDragManager::SwitchLayout(), TTreeFormula::SwitchToFormLeafInfo(), RooMinimizerFcn::Synchronize(), RooMinuit::synchronize(), TSelectorDraw::TakeAction(), TFileIter::TFileIter(), TFormLeafInfoMultiVarDim::TFormLeafInfoMultiVarDim(), TGHSplitter::TGHSplitter(), TGLVContainer::TGLVContainer(), TGMainFrame::TGMainFrame(), TGMenuTitle::TGMenuTitle(), TGScrollBarElement::TGScrollBarElement(), TGVSplitter::TGVSplitter(), THStack::THStack(), TAxis3D::ToggleZoom(), PyROOT::TTreeGetAttr(), TVolumeView::TVolumeView(), TGFileBrowser::Update(), TGTextEntry::UpdateOffset(), TRootGuiBuilder::UpdateStatusBar(), ROOT::MacOSX::X11::ViewIsHtmlView(), ROOT::MacOSX::X11::ViewIsHtmlViewFrame(), ROOT::MacOSX::X11::ViewIsTextView(), ROOT::MacOSX::X11::ViewIsTextViewFrame(), ROOT::Internal::TTreeProxyGenerator::WriteProxy(), ROOT::Internal::TTreeReaderGenerator::WriteSelector(), TXMLSetup::XmlGetElementName(), TGFileBrowser::XXExecuteDefaultAction(), TGedMarkerPopup::~TGedMarkerPopup(), TGMdiMainFrame::~TGMdiMainFrame(), and TProof::~TProof().

Bool_t TObject::InheritsFrom ( const TClass cl) const
virtual

Returns kTRUE if object inherits from TClass cl.

Reimplemented in TClass.

Definition at line 495 of file TObject.cxx.

void TObject::Inspect ( ) const
virtual

Dump contents of this object in a graphics canvas.

Same action as Dump but in a graphical form. In addition pointers to other objects can be followed.

The following picture is the Inspect of a histogram object:

base_inspect.png

Reimplemented in TGFrame, and TSystemFile.

Definition at line 508 of file TObject.cxx.

Referenced by TLink::ExecuteEvent(), and TFileDrawMap::InspectObject().

void TObject::InvertBit ( UInt_t  f)
inline

Definition at line 175 of file TObject.h.

Bool_t TObject::IsEqual ( const TObject obj) const
virtual

Default equal comparison (objects are equal if they have the same address in memory).

More complicated classes might want to override this function.

Reimplemented in TSlaveInfo, TPair< A, B >, TQCommand, TBonjourRecord, TGObject, and TObjString.

Definition at line 527 of file TObject.cxx.

Referenced by TList::FindLink(), TList::FindObject(), TObjArray::FindObject(), TCollection::FindObject(), TList::GetObjectRef(), TOrdCollection::IndexOf(), TObjArray::IndexOf(), TGeoMixture::IsEq(), TGObject::IsEqual(), TPair< A, B >::IsEqual(), TObjArray::RecursiveRemove(), TList::RecursiveRemove(), and while().

Bool_t TObject::IsFolder ( ) const
virtual
Bool_t TObject::IsOnHeap ( ) const
inline
virtual Bool_t TObject::IsSortable ( ) const
inlinevirtual
Bool_t TObject::IsZombie ( ) const
inline

Definition at line 141 of file TObject.h.

Referenced by TChain::AddFile(), ROOT::TGenericClassInfo::AdoptCollectionProxy(), TProofOutputFile::AdoptFile(), TTree::Branch(), TTreePlayer::BuildIndex(), TTree::BuildIndex(), HFit::CheckFitFunction(), TClass::Clone(), TFile::Close(), THbookFile::Convert2root(), TProofPerfAnalysis::DoDraw(), TProofBench::DrawCPU(), TProofBench::DrawDataSet(), TProofBench::DrawEfficiency(), TGLParametricEquation::EvalVertex(), TGeoVolume::Export(), TGeoManager::Export(), TXNetFile::Flush(), TSelEventGen::GenerateFiles(), TFile::GetAsyncOpenStatus(), ROOT::TGenericClassInfo::GetClass(), TClass::GetClass(), TVirtualPacketizer::GetEntries(), TFriendElement::GetFile(), TBranch::GetFile(), TProofServ::GetPriority(), TParallelCoord::GetTree(), TProof::HandleOutputOptions(), TGeoVolume::Import(), TGeoManager::Import(), TDataSetManagerFile::Init(), TBranch::Init(), TFile::Init(), TClass::Init(), TGLParametricPlot::InitGeometry(), TRecorderReplaying::Initialize(), TWebFile::IsOpen(), TFileIter::IsOpen(), TFileStager::IsStaged(), TNetXNGFile::IsUseable(), TRecorderInactive::ListCmd(), TRecorderInactive::ListGui(), TEventIter::LoadDir(), TEntryListFromFile::LoadList(), TChain::LoadTree(), TAlienFile::Open(), TXNetFile::Open(), TFile::Open(), TPoolProcessor< F >::OpenFile(), TProofBench::OpenOutFile(), TFileMerger::OutputFile(), TCreatePrimitives::Pad(), TFileMerger::PartialMerge(), TRecorderInactive::PrevCanvases(), TEntryListFromFile::Print(), TChain::Print(), TSelEventGen::Process(), TProof::Process(), read(), TBasket::ReadBasketBuffers(), TBasket::ReadBasketBuffersUnzip(), TXNetFile::ReadBuffer(), TXNetFile::ReadBufferAsync(), TRFIOFile::ReadBuffers(), TXNetFile::ReadBuffers(), TMVA::MethodPDEFoam::ReadFoamsFromFile(), TBranchElement::ReadLeavesClones(), TBranchElement::ReadLeavesClonesMember(), readSMatrix(), readSMatrixSym(), TTree::ReadStream(), readTMatrix(), readTMatrixSym(), readTrackD(), readTrackD32(), TEntryList::Relocate(), TProof::SavePerfTree(), TEntryList::Scan(), TLeaf::SetLeafCount(), TProofBench::SetOutFile(), TProofPerfAnalysis::SetSaveResult(), TRecorderRecording::StartRecording(), TXNetFile::SysClose(), TXNetFile::SysStat(), TChainIndex::TChainIndex(), TFileSet::TFileSet(), TProofMonSenderML::TProofMonSenderML(), TProofMonSenderSQL::TProofMonSenderSQL(), TProofPerfAnalysis::TProofPerfAnalysis(), TSQLMonitoringWriter::TSQLMonitoringWriter(), TXNetFile::WriteBuffer(), TGClient::~TGClient(), TGColorPick::~TGColorPick(), TGFileDialog::~TGFileDialog(), TGGotoDialog::~TGGotoDialog(), TGMsgBox::~TGMsgBox(), TGPrintDialog::~TGPrintDialog(), TGSearchDialog::~TGSearchDialog(), TGShutterItem::~TGShutterItem(), TNewChainDlg::~TNewChainDlg(), TNewQueryDlg::~TNewQueryDlg(), TTableDescriptor::~TTableDescriptor(), and TUploadDataSetDlg::~TUploadDataSetDlg().

void TObject::ls ( Option_t option = "") const
virtual
void TObject::MakeZombie ( )
inlineprotected

Definition at line 68 of file TObject.h.

Referenced by TChainIndex::Append(), TTableSorter::BuildSorter(), ClassImp(), TNetXNGFile::Close(), TFriendElement::Connect(), TNetFile::ConnectServer(), TNetFile::Create(), TXNetFile::CreateXClient(), TQConnection::Destroyed(), TAlienDirectory::Fill(), TFriendElement::GetFile(), TTableDescriptor::Init(), TWebFile::Init(), TDavixFile::Init(), TFTP::Init(), TXNetFile::Init(), TBranch::Init(), TFile::Init(), TClass::Init(), TTreeReader::Initialize(), TSQLFile::InitSqlDatabase(), TTableDescriptor::LearnTable(), TWebFile::ReadBuffer10(), TFile::ReadStreamerInfo(), TTable3Points::SetAnyColumn(), TClonesArray::SetClass(), TCling::SetClassInfo(), TAdvancedGraphicsDialog::TAdvancedGraphicsDialog(), TChainIndex::TChainIndex(), TClass::TClass(), TF1::TF1(), TF2::TF2(), TF3::TF3(), TFile::TFile(), TFileSet::TFileSet(), TFriendElement::TFriendElement(), TGColorPick::TGColorPick(), TGFileDialog::TGFileDialog(), TGGotoDialog::TGGotoDialog(), TGLParametricEquation::TGLParametricEquation(), TGMsgBox::TGMsgBox(), TGPrintDialog::TGPrintDialog(), TGraph::TGraph(), TGraph2D::TGraph2D(), TGraphErrors::TGraphErrors(), TGShutterItem::TGShutterItem(), THbookFile::THbookFile(), TLeaf::TLeaf(), TMapFile::TMapFile(), TMemFile::TMemFile(), TNetXNGFile::TNetXNGFile(), TOracleServer::TOracleServer(), TPad::TPad(), TSQLFile::TSQLFile(), TSQLMonitoringWriter::TSQLMonitoringWriter(), TTableDescriptor::TTableDescriptor(), TTableSorter::TTableSorter(), TTreeIndex::TTreeIndex(), and TXMLFile::TXMLFile().

void TObject::MayNotUse ( const char *  method) const

Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary).

Definition at line 971 of file TObject.cxx.

Referenced by TMap::Add(), TGridCollection::Add(), TClonesArray::AddAfter(), TClonesArray::AddAt(), TClonesArray::AddAtAndExpand(), TClonesArray::AddAtFree(), TClonesArray::AddBefore(), TClonesArray::AddFirst(), TClonesArray::AddLast(), TProofPlayer::AddOutput(), TProofPlayer::AddOutputObject(), TBtree::After(), TBtree::Before(), TGrid::Cd(), TGridCollection::CheckIfOnline(), TDataSetManagerAliEn::ClearCache(), TGLite::Command(), TGrid::Command(), TFolder::Copy(), TGTextView::Copy(), TDirectoryFile::Copy(), TGTextEdit::Copy(), TVirtualMonitoringReader::DeleteMap(), TGridCollection::DeselectFile(), TDecompBK::Det(), TDecompSparse::Det(), TGridCollection::DownscaleSelection(), TGPicture::Draw(), TGListTree::Draw(), TProofPlayer::DrawSelect(), TVirtualMonitoringReader::DumpResult(), TGridCollection::ExportXML(), TProofPlayer::Feedback(), TProfile::Fill(), TChain::Fill(), TProfile::FillN(), TProofPlayer::Finalize(), TProfile3D::GetBinContent(), TProfile3D::GetBinError(), TGridCollection::GetCollectionName(), TFileMerger::GetCWD(), TGridCollection::GetDataset(), TDataSetManagerAliEn::GetDataSets(), TDecompSparse::GetDecompMatrix(), TGridResult::GetEntryList(), TGridCollection::GetEntryList(), TGridCollection::GetExportUrl(), TGridCollection::GetFileCollection(), TGridCollection::GetFileGroupList(), TGridResult::GetFileInfoList(), TGridResult::GetFileName(), TGridResult::GetFileNamePath(), TGridCollection::GetGridResult(), TGrid::GetHomeDirectory(), TGridCollection::GetInfoComment(), TGLite::GetJDLGenerator(), TGrid::GetJDLGenerator(), TGridResult::GetKey(), TVirtualMonitoringReader::GetLastValues(), TGridCollection::GetLFN(), TVirtualMonitoringReader::GetMap(), TProofPlayer::GetNextPacket(), TGridCollection::GetNofGroupfiles(), TGridCollection::GetNofGroups(), TGridResult::GetPath(), TGridCollection::GetSize(), TGridCollection::GetSURL(), TGridCollection::GetTagFilterList(), TGridCollection::GetTURL(), TVirtualMonitoringReader::GetValues(), TProofPlayer::HandleGetTreeHeader(), TGridCollection::InvertSelection(), TGridCollection::IsOnline(), TGridCollection::IsSelected(), TGrid::KillById(), TGLite::LocateSites(), TGrid::LocateSites(), TGridCollection::LookupSUrls(), TGrid::Ls(), TProofPlayer::MergeOutput(), TGrid::Mkdir(), TGridCollection::Next(), TMatrixTSparse< Double_t >::NormByDiag(), TGrid::OpenCollection(), TGrid::OpenCollectionQuery(), TGridCollection::OpenFile(), TGridCollection::OverlapCollection(), TGridCollection::Prepare(), TGridCollection::Print(), TProofPlayer::Progress(), TVirtualMonitoringReader::ProxyValues(), TGrid::Ps(), TGrid::Pwd(), TGrid::Query(), TServerSocket::Recv(), TServerSocket::RecvRaw(), TGrid::Register(), TDataSetManagerAliEn::RegisterDataSet(), TGridCollection::Remove(), TDataSetManagerAliEn::RemoveDataSet(), TGridCollection::Reset(), TGLiteJob::Resubmit(), TGrid::ResubmitById(), TGrid::Rm(), TGrid::Rmdir(), TDataSetManagerAliEn::ScanDataSet(), TGridCollection::SelectFile(), TServerSocket::Send(), TVirtualMonitoringWriter::SendFileCloseEvent(), TVirtualMonitoringWriter::SendFileOpenProgress(), TVirtualMonitoringWriter::SendFileReadProgress(), TVirtualMonitoringWriter::SendFileWriteProgress(), TVirtualMonitoringWriter::SendInfoDescription(), TVirtualMonitoringWriter::SendInfoStatus(), TVirtualMonitoringWriter::SendInfoTime(), TVirtualMonitoringWriter::SendInfoUser(), TServerSocket::SendObject(), TVirtualMonitoringWriter::SendParameters(), TVirtualMonitoringWriter::SendProcessingProgress(), TVirtualMonitoringWriter::SendProcessingStatus(), TServerSocket::SendRaw(), TProfile::SetBins(), TProfile2D::SetBins(), TProfile3D::SetBins(), TMatrixTSym< Double_t >::SetColIndexArray(), TMatrixT< Double_t >::SetColIndexArray(), TFileMerger::SetCWD(), TGridCollection::SetExportUrl(), TGridResult::SetKey(), TVirtualMonitoringWriter::SetLogLevel(), TMatrixTSym< Double_t >::SetRowIndexArray(), TMatrixT< Double_t >::SetRowIndexArray(), TGridCollection::SetTag(), TGridCollection::SetTagFilterList(), TProofPlayer::SetupFeedback(), TGLite::Shell(), TGrid::Shell(), TDataSetManagerAliEn::ShowCache(), TDataSetManagerAliEn::ShowDataSets(), TDecompSparse::Solve(), TGridCollection::Stage(), TGridCollection::Status(), TGLite::Stderr(), TGrid::Stderr(), TGLite::Stdout(), TGrid::Stdout(), TProofPlayer::StopFeedback(), TProofPlayer::StoreFeedback(), TProofPlayer::StoreOutput(), TGrid::Submit(), TMemFile::SysStat(), TFile::TFile(), TDecompSparse::TransSolve(), and TVirtualMonitoringWriter::Verbose().

Bool_t TObject::Notify ( )
virtual
void TObject::Obsolete ( const char *  method,
const char *  asOfVers,
const char *  removedFromVers 
) const

Use this method to declare a method obsolete.

Specify as of which version the method is obsolete and as from which version it will be removed.

Definition at line 980 of file TObject.cxx.

Referenced by TH1::GetCellContent(), TH1::GetCellError(), TStreamerInfo::GetStreamerElementReal(), TH1::RebinAxis(), TH1::SetCellContent(), and TH1::SetCellError().

void TObject::operator delete ( void ptr)

Operator delete.

Definition at line 1023 of file TObject.cxx.

void TObject::operator delete[] ( void ptr)

Operator delete [].

Definition at line 1034 of file TObject.cxx.

void* TObject::operator new ( size_t  sz)
inline

Definition at line 158 of file TObject.h.

void* TObject::operator new ( size_t  sz,
void vp 
)
inline

Definition at line 160 of file TObject.h.

void* TObject::operator new[] ( size_t  sz)
inline

Definition at line 159 of file TObject.h.

void* TObject::operator new[] ( size_t  sz,
void vp 
)
inline

Definition at line 161 of file TObject.h.

TObject & TObject::operator= ( const TObject rhs)

TObject assignment operator.

Definition at line 102 of file TObject.cxx.

Referenced by ClassImp(), TGenPhaseSpace::operator=(), TLDAPResult::operator=(), TGeoNavigator::operator=(), TLDAPEntry::operator=(), TLDAPServer::operator=(), TGObject::operator=(), TNamed::operator=(), TPolyMarker::operator=(), TPolyLine::operator=(), TPolyMarker3D::operator=(), TGeoCacheState::operator=(), TBits::operator=(), TGGC::operator=(), TPyDispatcher::operator=(), TVirtualGeoTrack::operator=(), TClassMenuItem::operator=(), TPolyLine3D::operator=(), TMarker3DBox::operator=(), TView3D::operator=(), TSecContext::operator=(), TGMimeTypes::operator=(), TBox::operator=(), TExMap::operator=(), TGaxis::operator=(), TInetAddress::operator=(), TUrl::operator=(), TGeoPatternFinder::operator=(), TGeoVoxelFinder::operator=(), TGRegion::operator=(), TUri::operator=(), TSplinePoly::operator=(), TStreamerInfoActions::TConfiguredAction::operator=(), TParticle::operator=(), TArchiveMember::operator=(), TDecompBase::operator=(), TGSelectedPicture::operator=(), TGPicturePool::operator=(), TQpDataBase::operator=(), TVectorT< Element >::operator=(), TQpProbBase::operator=(), TVectorT< Double_t >::operator=(), TQpResidual::operator=(), TMatrixTSym< Element >::operator=(), TMatrixTSym< Double_t >::operator=(), TGXYLayout::operator=(), TQpLinSolverBase::operator=(), TMatrixT< Element >::operator=(), TMatrixT< Double_t >::operator=(), TQpSolverBase::operator=(), TMatrixTSparse< Element >::operator=(), TGVerticalLayout::operator=(), TQpVar::operator=(), TGeoBatemanSol::operator=(), and TGeoElementTable::operator=().

void TObject::Paint ( Option_t option = "")
virtual

This method must be overridden if a class wants to paint itself.

The difference between Paint() and Draw() is that when a object draws itself it is added to the display list of the pad in which it is drawn (and automatically redrawn whenever the pad is redrawn). While paint just draws the object without adding it to the pad display list.

Reimplemented in TF1, TH1, TStyle, TPad, TSQLFile, TFile, TGeoSubtraction, TCanvas, TGenerator, TGeoIntersection, TDirectory, TGraph, TVirtualPad, TParticle, TGeoShape, TBits, TGeoNode, TGraph2D, TGeoPainter, TGeoVolume, TEveDigitSet, TGeoUnion, TLatex, TEfficiency, TEveGeoTopNode, TF2, TSpider, TVirtualGeoPainter, TEveStraightLineSet, TParallelCoord, TF3, TCollection, TASImage, TGaxis, TParallelCoordVar, TGeoPhysicalNode, TVolume, TPie, TNode, TGeoOverlap, TTreePerfStats, TGeoBoolNode, TAxis3D, TXMLFile, TGLParametricEquation, TEvePointSet, TVirtualGeoTrack, TVolumePosition, TGraph2DPainter, TPrimary, TBox, TText, TEllipse, TEveCaloViz, TMarker3DBox, TGLHistPainter, TMultiGraph, TClassTree, TPave, THistPainter, TGeoTrack, TLine, TPolyLine, TEveShape, THStack, TPolyMarker3D, TEveText, TEveTriangleSet, TColorWheel, TPolyLine3D, TShape, TVolumeView, TPaveText, TGraphNode, TEveArrow, TEveProjectionAxes, TGraphPolargram, TLegend, TPolyLineShape, TGraphEdge, TPolyMarker, TASPaletteEditor::LimitLine, TEveScene, TMarker, TParallelCoordRange, TFileDrawMap, TArrow, TSpline, TMathText, TPaletteAxis, TASPaletteEditor::PaintPalette, TWbox, TMacro, TEveGeoShape, TGraphTime, TEvePlot3D, TButton, TGLTH3Composition, TSpectrum2Painter, TSlider, TPaveStats, TGL5DDataSet, TPaveLabel, TVirtualHistPainter, TDiamond, TCrown, TPavesText, TNodeDiv, TFrame, and TExec.

Definition at line 563 of file TObject.cxx.

Referenced by TGLScenePad::ObjectPaint(), TEveElement::PadPaint(), TMultiGraph::Paint(), TPad::Paint(), THistPainter::PaintFunction(), TGraphPainter::PaintGraphSimple(), TPad::PaintModified(), TLegend::PaintPrimitives(), and TRootCanvas::ProcessMessage().

void TObject::Pop ( )
virtual

Pop on object drawn in a pad to the top of the display list.

I.e. it will be drawn last and on top of all other primitives.

Reimplemented in TPad, TVirtualPad, and TFrame.

Definition at line 572 of file TObject.cxx.

Referenced by TCanvas::HandleInput().

void TObject::Print ( Option_t option = "") const
virtual

This method must be overridden when a class wants to print itself.

Reimplemented in TProof, TTree, TGCompositeFrame, TGeoElementTable, TF1, TH1, TGFrame, TGeoBatemanSol, TProofServ, TPad, RooStats::ModelConfig, TGFontPool, TGeoDecayChannel, TLorentzVector, TSlaveInfo, THnBase, ROOT::v5::TFormula, TSQLFile, TFile, RooAbsArg, TGFont, TDSet, TPluginManager, TBranchElement, TMultiDimFit, TGeoElementRN, TMatrixTBase< Element >, TRolke, TBranch, TZIPMember, TQpVar, TFormula, TPluginHandler, TVirtualPad, TVector3, TProofDesc, TSQLStructure, TVectorT< Element >, TVectorT< Double_t >, TDecompSparse, TDirectory, TGraph, TEnv, TFileInfoMeta, RooMsgService, TParticle, TEveTrans, TStreamerInfoActions::TActionSequence, RooAbsData, TQueryResult, TSlave, TBits, TGGCPool, TGeoVolume, TZIPFile, TMonaLisaWriter, RooWorkspace, TTable, TTreeCacheUnzip, TGFrameElement, TMVA::TNeuron, TGPicturePool, TChain, TDSetElement, RooPlot, TApplicationRemote, TGeoBranchArray, TGWindow, TQpDataDens, TGeoIsotope, TProofOutputFile, TUri, TQpDataSparse, TXNetFile, TProofBenchRunDataRead, TParameter< AParamType >, TParameter< Long64_t >, RooAbsCollection, TGeoVoxelFinder, TFileInfo, THostAuth, TQuaternion, TParticlePDG, TProofLogElem, TProofLite, TMVA::PDEFoamCell, TGGC, TFileCacheRead, TCollection, TGLayoutHints, TProofBenchRunCPU, TMapFile, TGeoMatrix, TVector2, TAlienCollection, TUrl, TGTextEdit, TParallelCoordVar, TKey, TTreeCache, TFTP, RooCatType, TGeoOverlap, TSecContext, TAliEnFind, TTreePerfStats, TDecompBase, TGeoElement, TGeoPhysicalNode, TClassTable, TXMLFile, TGraphBentErrors, TDecompSVD, TText, TFileCollection, TVolumePosition, TPrimary, RooAbsDataStore, TGPicture, TStatistic, RooLinkedList, TInetAddress, TBox, TEllipse, TPave, TPrincipal, TFoamCell, TGeoTrack, TMultiGraph, TChair, TDatabasePDG, TGridCollection, TSelEventGen, TLine, TPolyLine, TGraphAsymmErrors, TDecompQRH, THelix, THStack, TCondor, TPolyMarker3D, TMemFile, TPerfEvent, TGMimeTypes, TDecompLU, TPolyLine3D, TProofProgressStatus, TPaveText, TGraphErrors, TDecompBK, TBonjourRecord, TTreeIndex, TColor, TLegend, TAttParticle, RooNumIntConfig, TPolyMarker, RooCustomizer, RooAbsBinning, TMarker, TDecompChol, TProofLog, TStatus, RooFitResult, RooFormula, TPoints3D, TNetFile, TMVA::PDEFoamVect, TParallelCoordRange, TObjectTable, TEventList, TMessageHandler, TSpectrum, TProofBenchRun, TPointsArray3D, RooHist, TFunction, TNamed, RooCurve, TStopwatch, TFitResult, TParticleClassPDG, TLDAPEntry, TBranchClones, TProofNodes, TMacro, TLegendEntry, TAlienJobStatus, TGLiteResult, TSQLColumnInfo, RooAbsNumGenerator, THbookTree, RooStats::HistFactory::EstimateSummary, TBenchmark, TXTRU, TRootSecContext, TSlaveLite, TXNetFileStager, Roo1DTable, RooGenFitStudy, TBranchObject, TBranchRef, TSpectrum3, TAlienMasterJobStatus, RooAbsGenContext, RooNumGenConfig, TSpectrum2, TAlienResult, TLDAPAttribute, TNetFileStager, TCondorSlave, TLDAPResult, TObjString, RooNameSet, TFoamVect, TFileCacheWrite, TProofOutputList, TSQLTableInfo, TBranchSTL, TAlienMasterJob, RooGrid, RooEllipse, and RooSharedProperties.

Definition at line 594 of file TObject.cxx.

Referenced by TProofServ::HandleSocketInput(), TMVA::LDA::Initialize(), TFolder::ls(), TApplication::ls(), RooLinkedList::Print(), TFileInfo::Print(), TGFrameElement::Print(), TDSet::Print(), TGeoElementTable::Print(), TMVA::PDEFoam::PrintCell(), TMap::PrintCollectionEntry(), TCollection::PrintCollectionEntry(), TProofPerfAnalysis::PrintFileInfo(), TEveElement::PrintSourceObject(), TMVA::VariableDecorrTransform::PrintTransformation(), TMVA::TransformationHandler::PrintVariableRanking(), TProofPerfAnalysis::PrintWrkInfo(), RootX11ErrorHandler(), TProof::ShowQueries(), TMVA::MethodRuleFit::TrainJFRuleFit(), and TMVA::MethodRuleFit::TrainTMVARuleFit().

Int_t TObject::Read ( const char *  name)
virtual

Read contents of object with specified name from the current directory.

First the key with the given name is searched in the current directory, next the key buffer is deserialized into the object. The object must have been created before via the default constructor. See TObject::Write().

Reimplemented in TKeyXML, TBuffer, TKey, and TKeySQL.

Definition at line 606 of file TObject.cxx.

Referenced by TKey::Read(), TBuffer::Read(), and TMVA::MethodBDT::ReadWeightsFromStream().

void TObject::RecursiveRemove ( TObject obj)
virtual
void TObject::ResetBit ( UInt_t  f)
inline

Definition at line 172 of file TObject.h.

Referenced by TChain::Add(), TFileMerger::AddFile(), TChain::AddFile(), TChain::AddFileInfoList(), TChain::AddFriend(), TSelectorDraw::Begin(), TProofProgressLog::BuildLogList(), TClonesArray::BypassStreamer(), TGaxis::CenterLabels(), TGaxis::CenterTitle(), TGeoRotation::CheckMatrix(), TDataSetManager::CheckStagedStatus(), ClassImp(), TClonesArray::Clear(), TPad::Clear(), TStreamerInfo::Clear(), TGeoRotation::Clear(), TGeoCombiTrans::Clear(), TGeoHMatrix::Clear(), TSelectorDraw::ClearFormula(), TProofDraw::ClearFormula(), TProof::ClearInputData(), TEveManager::ClearROOTClassSaved(), TDirectoryFile::CloneObject(), TDirectory::CloneObject(), TApplicationRemote::Collect(), TTreeCloner::CollectBranches(), TSelectorDraw::CompileVariables(), TTree::Delete(), TGraph2D::DirectoryAutoAdd(), TH1::DirectoryAutoAdd(), TPoints3D::DoOwner(), TObjectSet::DoOwner(), TDSet::ElementsValid(), TBranch::Fill(), TProtoClass::FillTClass(), TTable::Fit(), TDataSetManagerAliEn::GetDataSet(), TGraph2D::GetHistogram(), TEventIterUnit::GetNextEvent(), TEventIterObj::GetNextEvent(), TEventIterTree::GetNextEvent(), TEventIterTree::GetNextPacket(), TXMLFile::GetStreamerInfoList(), TProofServ::HandleDataSets(), TProof::HandleInputMessage(), TClass::IgnoreTObjectStreamer(), TDataSetManagerFile::Init(), TProofOutputFile::Init(), TProofLite::Init(), THnBase::Init(), TDataSetManagerAliEn::Init(), TClass::Init(), TProof::Init(), TBranchElement::InitializeOffsets(), TProofPlayerRemote::InitPacketizer(), TStreamerInfo::InsertArtificialElements(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TNetXNGFileStager::LocateCollection(), TXNetFileStager::LocateCollection(), TFileStager::LocateCollection(), TVectorT< Double_t >::MakeValid(), TMatrixTBase< Element >::MakeValid(), TH2::Merge(), TH3::Merge(), TH1::Merge(), TProofPlayerRemote::MergeOutput(), TFileMerger::MergeRecursive(), TEfficiency::operator+=(), TRef::operator=(), TGeoCombiTrans::operator=(), TGraphPolargram::Paint(), TGraphPainter::PaintGraphPolar(), THistPainter::PaintHist(), TDataSetManagerFile::ParseInitOpts(), TDataSetManager::ParseInitOpts(), TFileMerger::PartialMerge(), TCreatePrimitives::PolyLine(), TProof::PrepareInputDataFile(), TGLVoxelPainter::PreparePalette(), TGLLegoPainter::PreparePalette(), TGLSurfacePainter::PreparePalette(), TProofLite::Process(), TProofPlayer::Process(), TApplication::ProcessLine(), TDataSetManager::ReadGroupConfig(), TUDPSocket::Recv(), TSocket::Recv(), TSSLSocket::RecvRaw(), TPSocket::RecvRaw(), TUDPSocket::RecvRaw(), TSocket::RecvRaw(), TProofServ::RegisterDataSets(), TBranchElement::ReleaseObject(), TChain::RemoveFriend(), TProcessUUID::RemoveUUID(), TProofLite::RequestStagingDataSet(), TParameter< Long64_t >::Reset(), TLeaf::ResetAddress(), TBranchElement::ResetAddress(), TFileCollection::ResetBitAll(), TBranchElement::ResetDeleteObject(), TVirtualStreamerInfo::ResetIsCompiled(), TBufferFile::ResetMap(), TDecompBase::ResetStatus(), TProofPlayer::SavePartialResults(), TCanvas::SaveSource(), TGMainFrame::SaveSource(), TGTransientFrame::SaveSource(), TGeoVolume::SelectVolume(), TUDPSocket::Send(), TSocket::Send(), TSSLSocket::SendRaw(), TPSocket::SendRaw(), TUDPSocket::SendRaw(), TSocket::SendRaw(), TBranchElement::SetAddress(), TGeoManager::SetAllIndex(), SetBit(), TTree::SetBranchStatus(), TBuffer::SetBuffer(), TTree::SetCircular(), TCling::SetClassInfo(), TH1::SetContour(), TGaxis::SetDecimals(), TProofPlayer::SetDispatchTimer(), TGraph::SetEditable(), TButton::SetFraming(), TEveTrans::SetGeoHMatrix(), TVirtualPacketizer::SetInitTime(), TLeaf::SetLeafCount(), TChainElement::SetLookedUp(), TBranchElement::SetMakeClass(), TGaxis::SetMoreLogLabels(), TMarker::SetNDC(), TLine::SetNDC(), TPolyLine::SetNDC(), TText::SetNDC(), TEllipse::SetNoEdges(), TGaxis::SetNoExponent(), TPaveStats::SetOptFit(), TPaveStats::SetOptStat(), TCollection::SetOwner(), TMap::SetOwnerValue(), TProofPlayer::SetProcessing(), TProof::SetProgressDialog(), TChain::SetProof(), TRotMatrix::SetReflection(), TProofOutputFile::SetRetrieve(), TGeoCombiTrans::SetRotation(), TProofMonSender::SetSendOptions(), TH1::SetStats(), TBranch::SetStatus(), TAxis::SetTicks(), TGeoTranslation::SetTranslation(), TGeoCombiTrans::SetTranslation(), TTreeReader::SetTree(), TClass::SetUnloaded(), TBranchElement::SetupAddressesImpl(), TGPack::SetVertical(), TPad::SetVertical(), TNode::SetVisibility(), TChain::SetWeight(), TDSet::SetWriteV3(), TSelectorEntries::SlaveBegin(), TApplication::TApplication(), TApplicationRemote::TApplicationRemote(), TASLogHandler::TASLogHandler(), TBuffer::TBuffer(), TChain::TChain(), TChainElement::TChainElement(), TClass::TClass(), TDSet::TDSet(), TDSetElement::TDSetElement(), TEventIter::TEventIter(), TFileInfo::TFileInfo(), TFileInfoMeta::TFileInfoMeta(), TGeoMatrix::TGeoMatrix(), TGeoVolume::TGeoVolume(), TProof::TProof(), TProofBench::TProofBench(), TProofChain::TProofChain(), TProofMonSender::TProofMonSender(), TProofMonSenderML::TProofMonSenderML(), TProofMonSenderSQL::TProofMonSenderSQL(), TProofServ::TProofServ(), TProofServLogHandler::TProofServLogHandler(), TServerSocket::TServerSocket(), TSocket::TSocket(), TUDPSocket::TUDPSocket(), TVirtualProofPlayer::TVirtualProofPlayer(), TGeoVolume::UnmarkSaved(), TPaletteAxis::UnZoom(), TAxis::UnZoom(), TTable::Update(), TCling::UpdateClassInfoWithDecl(), TTreeFormula::UpdateFormulaLeaves(), TBranchElement::ValidateAddress(), TProofSuperMaster::ValidateDSet(), TASLogHandler::~TASLogHandler(), TMultiGraph::~TMultiGraph(), and TProofServLogHandler::~TProofServLogHandler().

TObject::SaveAs ( const char *  filename = "",
Option_t option = "" 
) const
virtual

Save this object in the file specified by filename.

  • if "filename" contains ".root" the object is saved in filename as root binary file.
  • if "filename" contains ".xml" the object is saved in filename as a xml ascii file.
  • if "filename" contains ".cc" the object is saved in filename as C code independant from ROOT. The code is generated via SavePrimitive(). Specific code should be implemented in each object to handle this option. Like in TF1::SavePrimitive().
  • otherwise the object is written to filename as a CINT/C++ script. The C++ code to rebuild this object is generated via SavePrimitive(). The "option" parameter is passed to SavePrimitive. By default it is an empty string. It can be used to specify the Draw option in the code generated by SavePrimitive.

    The function is available via the object context menu.

Reimplemented in TPad, TSpline5, TSpline3, TGeoVolume, TVirtualPad, TTreePerfStats, TClassTree, TFolder, TSpline, TGObject, and TPaveClass.

Definition at line 643 of file TObject.cxx.

Referenced by TDocMacroDirective::SubProcess().

void TObject::SavePrimitive ( std::ostream &  out,
Option_t option = "" 
)
virtual

Save a primitive as a C++ statement(s) on output stream "out".

Reimplemented in TGHtml, TGGroupFrame, TGTransientFrame, TGMainFrame, TGeoPatternSphPhi, TGeoPatternSphTheta, TGHorizontalFrame, TGListTree, TGeoPatternSphR, TGVerticalFrame, TGeoHMatrix, TGCompositeFrame, TGeoPatternCylPhi, TF1, TStyle, TGeoIdentity, TGeoPatternCylR, TGRadioButton, TGListBox, TGMenuBar, TH1, TGeoPatternTrapZ, TGListDetailsLayout, TGCheckButton, TGFrame, TGeoCombiTrans, TGListLayout, TGeoPatternParaZ, TSpline5, TGTileLayout, TGMenuTitle, TGNumberEntry, TGeoPatternParaY, TGMatrixLayout, TGeoDecayChannel, TGLVContainer, TGPictureButton, TGCanvas, TGeoCtub, TGMdiMainFrame, TGeoPatternParaX, TSpline3, TGColumnLayout, TGPopupMenu, TGeoGtra, TGTextButton, TGRowLayout, TGeoRotation, TGFont, TGeoVolume, TCanvas, TGeoSubtraction, TGeoPatternZ, TGeoMixture, TGDoubleHSlider, TGeoElementRN, TASImage, TGFileContainer, TGVScrollBar, TGHorizontalLayout, TGeoConeSeg, TGLineWidthComboBox, TGVerticalLayout, TGListView, TGTextEntry, TGeoTrap, TGDoubleVSlider, TGHScrollBar, TGeoTubeSeg, TGraph, TGeoPatternY, TGHSlider, TGeoIntersection, TGLineStyleComboBox, TGedPatternSelect, TGColorSelect, TGeoTranslation, TGXYLayout, TGDockableFrame, TGNumberEntryField, TGVProgressBar, TGraph2D, TGComboBox, TGVFileSplitter, TTable, TGVSlider, TPad, TGTextEdit, TGTripleHSlider, TGSplitFrame, TGeoPatternX, TGContainer, TProfile2D, TGHButtonGroup, TLatex, TGTableLayout, TProfile3D, TGTextLBEntry, TGButton, TEfficiency, TGeoUnion, TGHProgressBar, TGXYLayoutHints, TGeoMaterial, TGHSplitter, TProfile, TGLabel, TF2, TGTab, TH2Poly, TGVButtonGroup, TGeoXtru, TGTextView, TGShutter, TGaxis, TParallelCoord, TGeoHype, TGeoPcon, TGGC, TGLayoutHints, TF3, TTreePerfStats, TGeoArb8, TParallelCoordVar, TGeoPgon, TGButtonGroup, TGProgressBar, TGTripleVSlider, TGeoCone, TGeoBoolNode, TGeoSphere, TPie, TGeoBBox, TGeoTorus, TGVSplitter, TAxis3D, TGraphBentErrors, TChair, TGeoPara, TGeoTube, TVolumePosition, TText, TGeoParaboloid, TGFSComboBox, TGMdiFrame, TBox, TGeoCompositeShape, TEllipse, TPave, TMultiGraph, TGeoTrd2, TMarker3DBox, TGeoTrd1, TLine, TPolyLine, TGMdiMenuBar, TGToolBar, TGraphAsymmErrors, THStack, THelix, TPolyMarker3D, TPaveText, TGeoScaledShape, TPolyLine3D, TGStatusBar, TVolumeView, TGedMarkerSelect, TGraphErrors, TLegend, TCurlyLine, TGIcon, TGraphNode, TRootEmbeddedCanvas, TPolyMarker, TGeoHalfSpace, TGShutterItem, TGeoShapeAssembly, TMarker, TGraphEdge, TGeoEltu, TGTableLayoutHints, TGraphStruct, TArrow, TMathText, TGVertical3DLine, TWbox, TGTabLayout, TPaletteAxis, TMacro, TGeoMedium, TButton, TH1K, TPaveStats, TCurlyArc, TCutG, TSlider, TPaveLabel, TGShapedFrame, TSliderBox, TPieSlice, TGroupButton, TF12, TPaveClass, TDiamond, TCrown, TGHorizontal3DLine, TFrame, TPavesText, TExec, and TArc.

Definition at line 702 of file TObject.cxx.

Referenced by TGroupButton::SavePrimitive(), TGShapedFrame::SavePrimitive(), TButton::SavePrimitive(), TGraphErrors::SavePrimitive(), TGeoScaledShape::SavePrimitive(), TGraphAsymmErrors::SavePrimitive(), TMultiGraph::SavePrimitive(), TGraphBentErrors::SavePrimitive(), TGeoBoolNode::SavePrimitive(), TGButtonGroup::SavePrimitive(), TH2Poly::SavePrimitive(), TGTab::SavePrimitive(), TEfficiency::SavePrimitive(), TGSplitFrame::SavePrimitive(), TPad::SavePrimitive(), TGraph2D::SavePrimitive(), TGraph::SavePrimitive(), TGeoVolume::SavePrimitive(), TGCanvas::SavePrimitive(), TGCompositeFrame::SavePrimitive(), TGVerticalFrame::SavePrimitive(), TGHorizontalFrame::SavePrimitive(), TGMainFrame::SavePrimitive(), TGTransientFrame::SavePrimitive(), TGGroupFrame::SavePrimitive(), and TH1::SavePrimitiveHelp().

void TObject::SetBit ( UInt_t  f,
Bool_t  set 
)

Set or unset the user status bits as specified in f.

Definition at line 732 of file TObject.cxx.

Referenced by TRootSniffer::AccessField(), TFolder::Add(), TMultiGraph::Add(), TStatus::Add(), TFileCollection::Add(), TTreeFormulaManager::Add(), TBrowser::Add(), TDSet::Add(), TSQLTableData::AddColumn(), TFileMerger::AddFile(), TFolder::AddFolder(), TProof::AddInputData(), TF1::AddToGlobalList(), TProcessUUID::AddUUID(), TDirectory::Append(), AppendPad(), TProof::AssertDataSet(), TProcessID::AssignID(), TSelectorDraw::Begin(), TTree::BranchOld(), TRemoteObject::Browse(), TTable::Browse(), TKey::Build(), TDirectoryFile::Build(), TEfficiency::Build(), TDirectory::Build(), TStreamerInfo::Build(), TStreamerInfo::BuildCheck(), TGeoElementTable::BuildDefaultElements(), TProofProgressLog::BuildLogList(), TStreamerInfo::BuildOld(), TParallelCoord::BuildParallelCoord(), TClonesArray::BypassStreamer(), TGDMLWrite::CanProcess(), TGaxis::CenterLabels(), TGaxis::CenterTitle(), TGeoElementRN::CheckDecays(), TGeoRotation::CheckMatrix(), TGFileBrowser::CheckRemote(), TDataSetManager::CheckStagedStatus(), ClassImp(), TROOT::ClassSaved(), TGraph2D::Clear(), TGeoHMatrix::Clear(), TProof::ClearInputData(), TGeoVolume::CloneVolume(), TGeoVolumeAssembly::CloneVolume(), TROOT::CloseFiles(), TApplicationRemote::Collect(), TProof::Collect(), TApplicationRemote::CollectInput(), TStreamerInfo::Compile(), TSystem::CompileMacro(), TSelectorDraw::CompileVariables(), TDecompSVD::Condition(), TDecompBase::Condition(), TCanvas::Constructor(), TFormula::Copy(), TGeoHMatrix::CopyFrom(), TTreeCloner::CopyProcessIds(), TGeoManager::CountLevels(), TApplication::CreateApplication(), TRootBrowserLite::CreateBrowser(), TGraph::CtorAllocate(), TDecompChol::Decompose(), TDecompBK::Decompose(), TDecompLU::Decompose(), TDecompQRH::Decompose(), TDecompSVD::Decompose(), TDecompSparse::Decompose(), TTreeFormula::DefinedVariable(), TEveGedEditor::DeleteWindow(), TGFrame::DeleteWindow(), TDecompChol::Det(), TDecompLU::Det(), TDecompQRH::Det(), TDecompSVD::Det(), TDecompBase::Det(), TGeoManagerEditor::DoCreateCombi(), TF1::DoCreateHistogram(), TGeoManagerEditor::DoCreateRotation(), TGeoManagerEditor::DoCreateTranslation(), TH3::DoFillProfileProjection(), TParallelCoordEditor::DoHistShowBoxes(), TF1::DoInitialize(), TProofProgressLog::DoLog(), TGMdiFrame::DontCallClose(), TGMainFrame::DontCallClose(), TPoints3D::DoOwner(), TObjectSet::DoOwner(), TParallelCoordEditor::DoPaintEntries(), TH2::DoProfile(), TH3::DoProjectProfile2D(), TGFileBrowser::DoubleClicked(), RooStats::LikelihoodIntervalPlot::Draw(), TParallelCoord::Draw(), TTable::Draw(), TArc::DrawArc(), TArrow::DrawArrow(), TGaxis::DrawAxis(), TBox::DrawBox(), TPad::DrawClassObject(), TF12::DrawCopy(), TF2::DrawCopy(), TH1::DrawCopy(), TF1::DrawCopy(), TCrown::DrawCrown(), TPad::DrawDist(), TEllipse::DrawEllipse(), TPad::DrawFrame(), TGraph::DrawGraph(), TLatex::DrawLatex(), TLine::DrawLine(), TLine::DrawLineNDC(), TMarker::DrawMarker(), TMathText::DrawMathText(), TH1::DrawNormalized(), TPave::DrawPave(), TPaveLabel::DrawPaveLabel(), TPolyLine3D::DrawPolyLine(), TPolyLine::DrawPolyLine(), TPolyMarker::DrawPolyMarker(), TPolyMarker3D::DrawPolyMarker(), TTreePlayer::DrawSelect(), TText::DrawText(), TWbox::DrawWbox(), TDSet::ElementsValid(), TTable::EntryLoop(), TRootBrowserLite::ExecuteDefaultAction(), TPaletteAxis::ExecuteEvent(), TPad::ExecuteEventAxis(), TGeoRotation::FastRotZ(), TGeoHMatrix::FastRotZ(), TBranch::FillEntryBuffer(), TProtoClass::FillTClass(), TGeoPolygon::FinishPolygon(), HFit::Fit(), TTable::Fit(), TDataSetIter::Flag(), TFile::Flush(), TMessage::Forward(), TASImage::FromPad(), TCling::GenerateTClass(), TBranch::GetBasket(), ROOT::TGenericClassInfo::GetClass(), TBranchElement::GetCollectionProxy(), TDataSetManagerAliEn::GetDataSet(), TBranchElement::GetEntry(), TDSetElement::GetFileInfo(), TFileCollection::GetFilesOnServer(), TFileCollection::GetFilesPerServer(), TGraph2D::GetHistogram(), TGraph::GetHistogram(), TRootSniffer::GetItem(), TBufferFile::GetLastProcessID(), TEventIterUnit::GetNextEvent(), TEventIterObj::GetNextEvent(), TEventIterTree::GetNextEvent(), TPacketizerFile::GetNextPacket(), TPacketizerUnit::GetNextPacket(), TEventIterUnit::GetNextPacket(), TEventIterObj::GetNextPacket(), TEventIterTree::GetNextPacket(), TProofServ::GetNextPacket(), TApplication::GetOptions(), TStreamerSTL::GetSize(), TXMLFile::GetStreamerInfoList(), TGCommandPlugin::HandleCommand(), TFormula::HandleLinear(), TFormula::HandleParametrizedFunctions(), TFormula::HandlePolN(), TProofServ::HandleSubmerger(), TRint::HandleTermInput(), TVirtualPacketizer::HandleTimer(), TClass::IgnoreTObjectStreamer(), TAxis::ImportAttributes(), TGaxis::ImportAxisAttributes(), TGeoElementTable::ImportElementsRN(), TSlaveLite::Init(), TBranchClones::Init(), TDataSetManagerFile::Init(), TDataMember::Init(), TParallelCoord::Init(), TProofOutputFile::Init(), TXNetFile::Init(), TParallelCoordVar::Init(), TCanvas::Init(), TBranch::Init(), TBranchElement::Init(), TDataSetManagerAliEn::Init(), TTreeFormula::Init(), TClass::Init(), TProof::Init(), TGeoHelix::InitDirection(), TBranchElement::InitializeOffsets(), TBranchElement::InitInfo(), TROOT::InitInterpreter(), TProof::InitMembers(), TGeoHelix::InitPoint(), TStreamerInfo::InsertArtificialElements(), TInspectCanvas::InspectObject(), TVectorT< Double_t >::Invalidate(), TMatrixTBase< Element >::Invalidate(), TEventIter::InvalidatePacket(), TGeoCombiTrans::Inverse(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TRootBrowserLite::ListTreeHighlight(), TChain::LoadTree(), TNetXNGFileStager::LocateCollection(), TXNetFileStager::LocateCollection(), TFileStager::LocateCollection(), TDSetElement::Lookup(), TGeoVolumeAssembly::MakeAssemblyFromVolume(), TGeoBranchArray::MakeCopy(), TGeoBranchArray::MakeCopyAt(), TGeoVolume::MakeCopyNodes(), TProofBench::MakeDataSet(), TGeoBranchArray::MakeInstance(), TGeoBranchArray::MakeInstanceAt(), TGeoVolume::MakeReflectedVolume(), TClassTree::Mark(), TDataSet::Mark(), TH2::Merge(), TH3::Merge(), TH1::Merge(), TCanvas::MoveOpaque(), TGeoHMatrix::Multiply(), TGeoRotation::MultiplyBy(), TGeoHMatrix::MultiplyLeft(), TSessionServerFrame::OnBtnConnectClicked(), TSessionQueryFrame::OnBtnSubmit(), TFileMerger::OpenExcessFiles(), TRef::operator=(), TGeoMatrix::operator=(), TGraph::operator=(), TGeoScale::operator=(), TGeoCombiTrans::operator=(), TGeoHMatrix::operator=(), TSpline::Paint(), TGraphPolargram::Paint(), TGeoTrack::Paint(), TClassTree::Paint(), TMultiGraph::Paint(), TPie::Paint(), TAxis3D::PaintAxis(), TClassTree::PaintClass(), THistPainter::PaintContour(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGraphPolar(), TMarker3DBox::PaintH3(), TGraphPainter::PaintHelper(), TPad::PaintPadFrame(), TLegend::PaintPrimitives(), THistPainter::PaintSpecialObjects(), THistPainter::PaintStat(), THistPainter::PaintStat2(), THistPainter::PaintStat3(), TGraphPainter::PaintStats(), THistPainter::PaintTitle(), TGeoTrack::PaintTrack(), TDataSetManagerFile::ParseInitOpts(), TDataSetManager::ParseInitOpts(), TFileMerger::PartialMerge(), TEveDigitSetEditor::PlotHisto(), TClass::PostLoadCheck(), TPad::Print(), TProofPlayerLite::Process(), TSelEventGen::Process(), TProofPlayer::Process(), TProofPlayerLocal::Process(), TProofPlayerRemote::Process(), TProof::Process(), TSelectorDraw::ProcessFillObject(), TRootBrowserLite::ProcessMessage(), THnBase::ProjectionAny(), TClass::Property(), TProcessID::PutObjectWithID(), TLeafObject::ReadBasket(), TBasket::ReadBasketBuffersUncompressedCase(), TDataSetManager::ReadGroupConfig(), TKey::ReadKeyBuffer(), TFile::ReadStreamerInfo(), TFile::Recover(), TUDPSocket::Recv(), TSocket::Recv(), TSSLSocket::RecvRaw(), TPSocket::RecvRaw(), TUDPSocket::RecvRaw(), TSocket::RecvRaw(), TGeoPatternFinder::Reflect(), TGeoRotation::ReflectX(), TGeoScale::ReflectX(), TGeoCombiTrans::ReflectX(), TGeoHMatrix::ReflectX(), TGeoRotation::ReflectY(), TGeoScale::ReflectY(), TGeoCombiTrans::ReflectY(), TGeoHMatrix::ReflectY(), TGeoRotation::ReflectZ(), TGeoScale::ReflectZ(), TGeoCombiTrans::ReflectZ(), TGeoHMatrix::ReflectZ(), TProofServ::RegisterDataSets(), TRootSniffer::RegisterObject(), TGeoMatrix::RegisterYourself(), TLeaf::ResetAddress(), TCanvas::ResizeOpaque(), TGeoRotation::RotateX(), TGeoCombiTrans::RotateX(), TGeoHMatrix::RotateX(), TGeoRotation::RotateY(), TGeoCombiTrans::RotateY(), TGeoHMatrix::RotateY(), TGeoRotation::RotateZ(), TGeoCombiTrans::RotateZ(), TGeoHMatrix::RotateZ(), TProofPlayer::SavePartialResults(), TGeoMedium::SavePrimitive(), TGeoEltu::SavePrimitive(), TGeoHalfSpace::SavePrimitive(), TGeoTrd1::SavePrimitive(), TGeoTrd2::SavePrimitive(), TGeoCompositeShape::SavePrimitive(), TGeoParaboloid::SavePrimitive(), TGeoPara::SavePrimitive(), TGeoTube::SavePrimitive(), TGeoTorus::SavePrimitive(), TGeoBBox::SavePrimitive(), TGeoSphere::SavePrimitive(), TGeoCone::SavePrimitive(), TGeoPgon::SavePrimitive(), TGeoArb8::SavePrimitive(), TGeoPcon::SavePrimitive(), TGeoHype::SavePrimitive(), TGeoXtru::SavePrimitive(), TGeoMaterial::SavePrimitive(), TGeoTranslation::SavePrimitive(), TGeoTubeSeg::SavePrimitive(), TGeoTrap::SavePrimitive(), TGeoConeSeg::SavePrimitive(), TGeoMixture::SavePrimitive(), TGeoRotation::SavePrimitive(), TGeoGtra::SavePrimitive(), TGeoCtub::SavePrimitive(), TGeoCombiTrans::SavePrimitive(), TGeoHMatrix::SavePrimitive(), TClassTree::ScanClasses(), TDataSetManager::ScanFile(), TGeoVolume::SelectVolume(), TUDPSocket::Send(), TSocket::Send(), TSSLSocket::SendRaw(), TPSocket::SendRaw(), TUDPSocket::SendRaw(), TSocket::SendRaw(), TRef::SetAction(), TParallelCoordSelect::SetActivated(), TGeoVolume::SetAdded(), TBranchObject::SetAddress(), TBranchElement::SetAddress(), TGeoPhysicalNode::SetAligned(), TChain::SetAutoDelete(), TBranch::SetAutoDelete(), TTreeFormula::SetAxis(), TParallelCoordVar::SetBarHisto(), TEfficiency::SetBetaBinParameters(), TFileCollection::SetBitAll(), TGeoTrack::SetBits(), TParallelCoordVar::SetBoxPlot(), TBranchElement::SetBranchFolder(), TTree::SetBranchStatus(), TBuffer::SetBuffer(), TParallelCoord::SetCandleChart(), TEfficiency::SetCentralInterval(), TGeoHelix::SetCharge(), TTree::SetCircular(), TGeoNode::SetCloned(), TH1::SetContour(), TH1::SetContourLevel(), TGeoPolygon::SetConvex(), TParallelCoord::SetCurveDisplay(), TGeoVolume::SetCylVoxels(), TGaxis::SetDecimals(), TGeoElement::SetDefined(), TGeoHMatrix::SetDx(), TGeoHMatrix::SetDy(), TGeoHMatrix::SetDz(), TGraph::SetEditable(), TChain::SetEntryListFile(), TGeoHelix::SetField(), TButton::SetFraming(), TEveTrans::SetGeoHMatrix(), TParallelCoord::SetGlobalLogScale(), TParallelCoord::SetGlobalScale(), TCanvas::SetGrayscale(), TGeoHelix::SetHelixStep(), TParallelCoordVar::SetHistogramHeight(), TLine::SetHorizontal(), TProof::SetInputDataFile(), TGeoVoxelFinder::SetInvalid(), TVirtualStreamerInfo::SetIsCompiled(), TGeoOverlap::SetIsExtrusion(), TGeoOverlap::SetIsOverlap(), TGeoPhysicalNode::SetIsVolAtt(), TParallelCoordVar::SetLiveRangesUpdate(), TParallelCoord::SetLiveRangesUpdate(), TParallelCoordVar::SetLogScale(), TProofLog::SetLogToBox(), TChainElement::SetLookedUp(), TDSetElement::SetLookedUp(), TBranchElement::SetMakeClass(), TDecompChol::SetMatrix(), TDecompBK::SetMatrix(), TDecompLU::SetMatrix(), TDecompQRH::SetMatrix(), TDecompSVD::SetMatrix(), TDecompSparse::SetMatrix(), TVolumePosition::SetMatrixOwner(), TParameter< Long64_t >::SetMergeMode(), TGaxis::SetMoreLogLabels(), RooAbsArg::SetName(), RooAbsArg::SetNameTitle(), TMarker::SetNDC(), TLine::SetNDC(), TPolyLine::SetNDC(), TText::SetNDC(), TGeoVoxelFinder::SetNeedRebuild(), TGeoPolygon::SetNextIndex(), TGeoVolume::SetNodes(), TEllipse::SetNoEdges(), TGaxis::SetNoExponent(), TObjectSpy::SetObject(), TStyle::SetOptFit(), TStyle::SetOptStat(), TProofOutputFile::SetOutputFileName(), TGeoNode::SetOverlapping(), TGeoVolume::SetOverlappingCandidate(), TCollection::SetOwner(), TMap::SetOwnerValue(), TView3D::SetParallel(), TView3D::SetPerspective(), TEfficiency::SetPosteriorAverage(), TEfficiency::SetPosteriorMode(), TProofPlayer::SetProcessing(), TProof::SetProgressDialog(), TChain::SetProof(), TAxis::SetRange(), TRotMatrix::SetReflection(), TGeoVolume::SetReplicated(), TProofOutputFile::SetRetrieve(), TGeoRotation::SetRotation(), TGeoCombiTrans::SetRotation(), TGeoHMatrix::SetRotation(), TGeoScale::SetScale(), TGeoHMatrix::SetScale(), TCanvas::SetSelected(), TProofMonSender::SetSendOptions(), TGeoMatrix::SetShared(), TEfficiency::SetShortestInterval(), TParallelCoordSelect::SetShowRanges(), TGeoPatternFinder::SetSpacedOut(), TEfficiency::SetStatisticOption(), TH1::SetStats(), TBranch::SetStatus(), TAxis::SetTicks(), TGeoTranslation::SetTranslation(), TGeoCombiTrans::SetTranslation(), TGeoHMatrix::SetTranslation(), TTreeReader::SetTree(), TDirectoryFile::SetTRefAction(), TClass::SetUnloaded(), TBranchObject::SetupAddresses(), TBranchElement::SetupAddressesImpl(), TProofLite::SetupWorkers(), TGeoElement::SetUsed(), TGeoMaterial::SetUsed(), TEfficiency::SetUseWeightedEvents(), TParallelCoord::SetVertDisplay(), TLine::SetVertical(), TGPack::SetVertical(), TPad::SetVertical(), TGeoNode::SetVirtual(), TGeoPhysicalNode::SetVisibility(), TNode::SetVisibility(), TGeoPhysicalNode::SetVisibleFull(), TChain::SetWeight(), TDSet::SetWriteV3(), TGeoPolygon::SetXY(), TGeoHelix::SetXYcurvature(), TClassTree::ShowCod(), TPad::ShowGuidelines(), TClassTree::ShowHas(), TClassTree::ShowMul(), TClassTree::ShowRef(), RooStats::SPlot::SPlot(), HFit::StoreAndDrawFitFunction(), TKeyXML::StoreObject(), TSelectorDraw::TakeAction(), TSelectorDraw::TakeEstimate(), TApplicationRemote::TApplicationRemote(), TASLogHandler::TASLogHandler(), TBuffer::TBuffer(), TBufferJSON::TBufferJSON(), TBufferSQL2::TBufferSQL2(), TBufferXML::TBufferXML(), TButton::TButton(), TClass::TClass(), TDataSetManagerAliEn::TDataSetManagerAliEn(), TDecompBK::TDecompBK(), TDecompChol::TDecompChol(), TDecompLU::TDecompLU(), TDecompQRH::TDecompQRH(), TDecompSVD::TDecompSVD(), TEfficiency::TEfficiency(), TEventIterTree::TEventIterTree(), TFile::TFile(), TFileDrawMap::TFileDrawMap(), TFileInfo::TFileInfo(), TFileInfoMeta::TFileInfoMeta(), TFolder::TFolder(), TFormula::TFormula(), TGColorDialog::TGColorDialog(), TGeoCombiTrans::TGeoCombiTrans(), TGeoElementRN::TGeoElementRN(), TGeoGenTrans::TGeoGenTrans(), TGeoHelix::TGeoHelix(), TGeoHMatrix::TGeoHMatrix(), TGeoNodeOffset::TGeoNodeOffset(), TGeoPolygon::TGeoPolygon(), TGeoScale::TGeoScale(), TGeoTranslation::TGeoTranslation(), TGeoVolumeMulti::TGeoVolumeMulti(), TGL5DDataSet::TGL5DDataSet(), TKDTreeBinning::TKDTreeBinning(), TMarker3DBox::TMarker3DBox(), TObjectRefSpy::TObjectRefSpy(), TCanvas::ToggleAutoExec(), TCanvas::ToggleEditor(), TCanvas::ToggleEventStatus(), TAxis3D::ToggleRulers(), TCanvas::ToggleToolBar(), TCanvas::ToggleToolTips(), TAxis3D::ToggleZoom(), TPad::TPad(), TPaletteAxis::TPaletteAxis(), TParallelCoordRange::TParallelCoordRange(), TParallelCoordSelect::TParallelCoordSelect(), TParameter< Long64_t >::TParameter(), TPolyLine3D::TPolyLine3D(), TPolyMarker::TPolyMarker(), TPolyMarker3D::TPolyMarker3D(), TProof::TProof(), TProofBench::TProofBench(), TProofChain::TProofChain(), TProofMonSender::TProofMonSender(), TProofMonSenderML::TProofMonSenderML(), TProofMonSenderSQL::TProofMonSenderSQL(), TProofPerfAnalysis::TProofPerfAnalysis(), TProofServLogHandler::TProofServLogHandler(), TROOT::TROOT(), TServerSocket::TServerSocket(), TSlider::TSlider(), TSQLFile::TSQLFile(), TStreamerElement::TStreamerElement(), TSystemFile::TSystemFile(), TView3D::TView3D(), TXMLFile::TXMLFile(), TGDMLWrite::UnsetTemporaryBits(), TTable::Update(), TTreeFormula::UpdateFormulaLeaves(), TGeoHelix::UpdateHelix(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TNetFile::WriteBuffer(), TFile::WriteBuffer(), TFile::WriteBufferViaCache(), TDocParser::WriteMethod(), TFile::WriteProcessID(), TKeyXML::XmlReadAny(), TGFileBrowser::XXExecuteDefaultAction(), TEfficiency::~TEfficiency(), TGraph::~TGraph(), TH1::~TH1(), TMultiGraph::~TMultiGraph(), TObjectRefSpy::~TObjectRefSpy(), TObjectSpy::~TObjectSpy(), and TROOT::~TROOT().

void TObject::SetBit ( UInt_t  f)
inline

Definition at line 171 of file TObject.h.

void TObject::SetDrawOption ( Option_t option = "")
virtual

Set drawing option for object.

This option only affects the drawing style and is stored in the option field of the TObjOptLink supporting a TPad's primitive list (TList). Note that it does not make sense to call object.SetDrawOption(option) before having called object.Draw().

Reimplemented in TGFrame, TPad, TRootBrowserLite, TAxis, TBrowser, TGedFrame, RooPlot, TSystemDirectory, and TSystemFile.

Definition at line 715 of file TObject.cxx.

Referenced by TArrowEditor::DoOption(), THStack::Paint(), and RooPlot::SetDrawOption().

void TObject::SetDtorOnly ( void obj)
static
void TObject::SetObjectStat ( Bool_t  stat)
static

Turn on/off tracking of objects in the TObjectTable.

Definition at line 999 of file TObject.cxx.

Referenced by TROOT::InitSystem(), TClass::New(), and TClass::NewArray().

void TObject::SetUniqueID ( UInt_t  uid)
virtual
void TObject::SysError ( const char *  method,
const char *  msgfmt,
  ... 
) const
virtual

Issue system error message.

Use "location" to specify the method where the system error occurred. Accepts standard printf formatting arguments.

Definition at line 932 of file TObject.cxx.

Referenced by TUnixSystem::AcceptConnection(), TWinNTSystem::AcceptConnection(), TWinNTSystem::AnnounceTcpService(), TWinNTSystem::AnnounceUdpService(), TWinNTSystem::AnnounceUnixService(), TKSocket::BlockRead(), TCondor::ClaimVM(), TKSocket::Connect(), TWinNTSystem::ConnectService(), TUnixSystem::DispatchOneEvent(), TWinNTSystem::DispatchOneEvent(), TFile::Flush(), TDSetElement::GetEntries(), TDSet::GetEntries(), TFTP::GetFile(), TXProofMgr::GetFile(), TSystem::GetFromPipe(), TCondor::GetImage(), TProof::GetLastLog(), TUnixSystem::GetPeerName(), TWinNTSystem::GetPeerName(), TUnixSystem::GetSockName(), TWinNTSystem::GetSockName(), TUnixSystem::GetSockOpt(), TWinNTSystem::GetSockOpt(), TCondor::GetVirtualMachines(), TCondor::GetVmInfo(), TProofLockPath::Lock(), TProof::NotifyLogMsg(), TWinNTSystem::Now(), TFile::ReadBuffer(), TApplicationServer::ReceiveFile(), TProofServ::ReceiveFile(), TApplicationRemote::RecvLogFile(), TProof::RecvLogFile(), TUnixSystem::RedirectOutput(), TProofServ::RedirectOutput(), TWinNTSystem::RedirectOutput(), TCondor::Release(), TFile::ReOpen(), TFile::Seek(), TApplicationRemote::SendFile(), TProof::SendFile(), TApplicationServer::SendLogFile(), TProofServ::SendLogFile(), TXProofMgr::SendMsgToUsers(), TWinNTSystem::SetNonBlock(), TUnixSystem::SetSockOpt(), TWinNTSystem::SetSockOpt(), TCondor::SetState(), TApplicationServer::Setup(), TProof::ShowLog(), TSystem::ShowOutput(), THDFSFile::SysOpen(), TChirpFile::SysSeek(), THDFSFile::SysSeek(), TMemFile::SysSeek(), TUnixSystem::TempFileName(), TWinNTSystem::TempFileName(), TFile::TFile(), TMapFile::TMapFile(), TMemFile::TMemFile(), TUnixSystem::UnixIgnoreSignal(), TUnixSystem::UnixNow(), TUnixSystem::UnixRecv(), TUnixSystem::UnixResetSignal(), TUnixSystem::UnixSend(), TUnixSystem::UnixSetitimer(), TUnixSystem::UnixSigAlarmInterruptsSyscalls(), TUnixSystem::UnixSignal(), TUnixSystem::UnixTcpConnect(), TUnixSystem::UnixTcpService(), TUnixSystem::UnixUdpConnect(), TUnixSystem::UnixUdpService(), TUnixSystem::UnixUnixConnect(), TUnixSystem::UnixUnixService(), TProofLockPath::Unlock(), TWinNTSystem::WinNTUdpConnect(), TWinNTSystem::WinNTUnixConnect(), TFile::WriteBuffer(), TPosixCondition::~TPosixCondition(), and TPosixMutex::~TPosixMutex().

Bool_t TObject::TestBit ( UInt_t  f) const
inline

Definition at line 173 of file TObject.h.

Referenced by TServerSocket::Accept(), TContextMenu::Action(), TTreeFormulaManager::Add(), TH1::Add(), TDSet::Add(), TDataSet::AddAtAndExpand(), TProofPlayerRemote::AddOutputObject(), TStreamerInfo::AddReadAction(), TStreamerInfo::AddReadMemberWiseVecPtrAction(), ROOT::Detail::TSchemaRuleSet::AddRule(), TF1::AddToGlobalList(), TStreamerInfo::AddWriteAction(), TStreamerInfo::AddWriteMemberWiseVecPtrAction(), TGeoPhysicalNode::Align(), AnalyticalIntegral(), ROOT::Internal::TTreeReaderGenerator::AnalyzeTree(), TTable::AppendRows(), TProof::AssertDataSet(), TProcessID::AssignID(), TSelectorDraw::Begin(), TTreeFormula::BranchHasMethod(), TTree::BranchOld(), TTree::BronchExec(), TSystemDirectory::Browse(), TRemoteObject::Browse(), TCanvas::Build(), TStreamerInfo::Build(), TStreamerInfo::BuildCheck(), TStreamerInfo::BuildOld(), TProof::BuildPackage(), TProof::BuildPackageOnClient(), TClonesArray::CanBypassStreamer(), TClass::CanIgnoreTObjectStreamer(), TGDMLWrite::CanProcess(), TClass::CanSplit(), TGeoElementRN::CheckDecays(), TProof::CheckFile(), TDataSetManager::CheckStagedStatus(), TH1::Chi2TestX(), TROOT::ClassSaved(), TSystem::CleanCompiledMacros(), TParallelCoordEditor::CleanUpSelections(), TParallelCoordEditor::CleanUpVariables(), TTable::Clear(), TList::Clear(), TPad::Clear(), TGeoCombiTrans::Clear(), TDirectoryFile::CloneObject(), TTree::CloneTree(), TGeoVolume::CloneVolume(), TGeoVolumeAssembly::CloneVolume(), TPad::Close(), TGMdiMainFrame::Close(), TProof::Collect(), TTreeCloner::CollectBranches(), TFileInfo::Compare(), TFormula::Compile(), TStreamerInfo::Compile(), TGeoHelix::ComputeSafeStep(), TDecompSVD::Condition(), TDecompBase::Condition(), TClonesArray::ConstructedAt(), TCanvas::Constructor(), TFormula::Copy(), TTree::CopyAddresses(), TTable::CopyRows(), TGeoManager::CountLevels(), TEventIter::Create(), TSocket::CreateAuthSocket(), THnBase::CreateHist(), TPacketizerMulti::CreatePacketizer(), TStreamerInfoActions::TActionSequence::CreateReadMemberWiseActions(), TStreamerInfoActions::TActionSequence::CreateWriteMemberWiseActions(), TDecompChol::Decompose(), TDecompBK::Decompose(), TDecompLU::Decompose(), TDecompQRH::Decompose(), TDecompSVD::Decompose(), TDecompSparse::Decompose(), TTreeFormula::DefinedVariable(), TClonesArray::Delete(), TEveGedEditor::DeleteWindow(), TGFrame::DeleteWindow(), TCanvas::Destructor(), TStreamerInfo::DestructorImpl(), TDecompChol::Det(), TDecompLU::Det(), TDecompQRH::Det(), TDecompSVD::Det(), TDecompBase::Det(), TProof::DisablePackageOnClient(), TProof::DisablePackages(), TParallelCoordRange::DistancetoPrimitive(), TMarker::DistancetoPrimitive(), TText::DistancetoPrimitive(), TLine::DistancetoPrimitive(), TGeoTrack::DistancetoPrimitive(), TNode::DistancetoPrimitive(), TF1::DoCreateHistogram(), TFormula::DoEval(), TH1::DoFillN(), TProofProgressLog::DoLog(), TProofProgressDialog::DoLog(), TH2::DoProfile(), TH3::DoProject1D(), TH3::DoProject2D(), TH2::DoProjection(), TH3::DoProjectProfile2D(), TParallelCoordEditor::DoSelectionSelect(), THStack::Draw(), TTreePerfStats::Draw(), TParallelCoord::Draw(), TChain::Draw(), TGraph2D::Draw(), TCanvas::Draw(), TH1::Draw(), TGaxis::DrawAxis(), TCanvas::DrawClonePad(), TEllipse::DrawEllipse(), TCanvas::DrawEventStatus(), TLatex::DrawLatex(), TMathText::DrawMathText(), TGLVoxelPainter::DrawPalette(), TText::DrawText(), TDSet::ElementsValid(), TTable::EntryLoop(), TTreeFormula::EvalInstance(), Execute(), TLink::ExecuteEvent(), TButton::ExecuteEvent(), TParallelCoordRange::ExecuteEvent(), TMarker::ExecuteEvent(), TPave::ExecuteEvent(), TText::ExecuteEvent(), TLine::ExecuteEvent(), THistPainter::ExecuteEvent(), TBox::ExecuteEvent(), TParallelCoordVar::ExecuteEvent(), TPad::ExecuteEvent(), TClonesArray::ExpandCreate(), TClonesArray::ExpandCreateFast(), TBranchObject::Fill(), TH2::Fill(), TH3::Fill(), TProfile::Fill(), TProfile2D::Fill(), TProfile3D::Fill(), TBranch::Fill(), TBranchElement::Fill(), TH1::Fill(), TTree::Fill(), TKey::FillBuffer(), TBranch::FillEntryBuffer(), TBranchElement::FillLeavesCustomStreamer(), TBranchElement::FillLeavesMember(), TH2::FillN(), TProfile::FillN(), TEfficiency::FillWeighted(), TProofPlayerRemote::Finalize(), RooLinkedList::find(), TGraphPolargram::FindAlign(), RooLinkedList::findArg(), TChain::FindBranch(), TClassTree::FindClassesUsedBy(), TClassTree::FindClassesUsing(), THLimitsFinder::FindGoodLimits(), TChain::FindLeaf(), TList::FindLink(), TROOT::FindSpecialObject(), HFit::Fit(), TTable::Fit(), TCling::GenerateTClass(), TParallelCoordVar::GetBarHisto(), TText::GetBoundingBox(), TLatex::GetBoundingBox(), TParallelCoordVar::GetBoxPlot(), TChain::GetBranch(), TChain::GetBranchStatus(), TTree::GetBranchStatus(), TParallelCoord::GetCandleChart(), TClass::GetClass(), TClass::GetClassInfo(), TClass::GetCollectionProxy(), TH1::GetContour(), TH1::GetContourLevelPad(), TParallelCoord::GetCurveDisplay(), TProofBenchRunDataRead::GetDataSet(), TGraph::GetEditable(), TEfficiency::GetEfficiency(), TEfficiency::GetEfficiencyErrorLow(), TEfficiency::GetEfficiencyErrorUp(), TProofChain::GetEntries(), TChain::GetEntries(), TBranchSTL::GetEntry(), TBranchObject::GetEntry(), TBranchClones::GetEntry(), TBranch::GetEntry(), TTree::GetEntry(), TBranch::GetEntryExport(), TEventIter::GetEntryNumber(), TParallelCoordVar::GetEntryXY(), TFormula::GetExpFormula(), TDSetElement::GetFileInfo(), TFileCollection::GetFilesOnServer(), TFileCollection::GetFilesPerServer(), TAxis::GetFirst(), TParallelCoord::GetGlobalLogScale(), TParallelCoord::GetGlobalScale(), TGraph2D::GetHistogram(), TH1::GetKurtosis(), TAxis::GetLast(), TBufferFile::GetLastProcessID(), TChain::GetLeaf(), TChain::GetListOfBranches(), TChain::GetListOfLeaves(), TProof::GetListOfQueries(), TProof::GetLog(), TParallelCoordVar::GetLogScale(), TDecompLU::GetLU(), TBranchElement::GetMakeClass(), TDecompChol::GetMatrix(), TDecompLU::GetMatrix(), TDecompSVD::GetMatrix(), TClass::GetMissingDictionaries(), TClass::GetMissingDictionariesWithRecursionCheck(), TEventIterUnit::GetNextEvent(), TEventIterTree::GetNextEvent(), TPacketizerAdaptive::GetNextPacket(), TEventIterUnit::GetNextPacket(), TEventIterTree::GetNextPacket(), TNode::GetNode(), TGeometry::GetNode(), TEllipse::GetNoEdges(), TDSet::GetNumOfFiles(), TRefArray::GetObjectUID(), TPaveStats::GetOptFit(), TPaveStats::GetOptStat(), TProof::GetOutput(), TDecompQRH::GetQ(), TParallelCoordVar::GetQuantiles(), TDecompQRH::GetR(), TChain::GetReadEntry(), TStreamerElement::GetSequenceType(), TDecompSVD::GetSig(), TStreamerSTL::GetSize(), TH1::GetSkewness(), TFileCollection::GetStagedSubset(), TH2::GetStats(), TH3::GetStats(), TProfile::GetStats(), TProfile2D::GetStats(), TProfile3D::GetStats(), TH1::GetStats(), TAxis::GetTicks(), TBranchElement::GetTypedValue(), TDecompBK::GetU(), TDecompSVD::GetU(), TDecompQRH::GetUp(), TUrl::GetUrl(), TDecompSVD::GetV(), TPaletteAxis::GetValueColor(), TBranchElement::GetValuePointer(), TParallelCoord::GetVertDisplay(), TDecompQRH::GetW(), TChain::GetWeight(), TParallelCoordVar::GetXYfromValue(), TProof::GoParallel(), TGMainFrame::HandleClientMessage(), TProofServ::HandleDataSets(), TCanvas::HandleInput(), TProof::HandleInputMessage(), TGTextEntry::HandleKey(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofServ::HandleSocketInput(), TVirtualPacketizer::HandleTimer(), TChainElement::HasBeenLookedUp(), TDSetElement::HasBeenLookedUp(), TGeoElementTable::HasDefaultElements(), TGeoElementTable::HasRNElements(), TPad::HighLight(), TClass::IgnoreTObjectStreamer(), TAxis::ImportAttributes(), TGaxis::ImportAxisAttributes(), TProofPlayerRemote::Incorporate(), TBranchClones::Init(), TDataSetManagerFile::Init(), TProofLite::Init(), THnBase::Init(), TBranchElement::Init(), TDataSetManagerAliEn::Init(), TTreeFormula::Init(), TClass::Init(), TProof::Init(), TProofLite::InitDataSetManager(), TGLIsoPainter::InitGeometry(), TBranchElement::InitializeOffsets(), TBranchElement::InitInfo(), TDataSetManagerFile::InitLocalCache(), TProofPlayerRemote::InitPacketizer(), TGraph2D::Interpolate(), TGeoVolume::IsAdded(), TGeoPhysicalNode::IsAligned(), TBranch::IsAutoDelete(), TBranchElement::IsBranchFolder(), TTreeReader::IsChain(), TProofPlayerRemote::IsClient(), TGeoPolygon::IsClockwise(), TGeoNode::IsCloned(), TGeoMatrix::IsCombi(), TParameter< Long64_t >::IsConst(), TGeoPolygon::IsConvex(), TGeoVolume::IsCylVoxels(), TGeoElement::IsDefined(), TGraph::IsEditable(), TGeoOverlap::IsExtrusion(), TGeoPolygon::IsFinished(), TClass::IsForeign(), TGeoMatrix::IsGeneral(), TCanvas::IsGrayscale(), TLine::IsHorizontal(), TGeoMatrix::IsIdentity(), THnBase::IsInRange(), TTreeFormula::IsInteger(), TGeoVoxelFinder::IsInvalid(), TRootSniffer::IsItemField(), ROOT::v5::TFormula::IsLinear(), TVolumeView::IsMarked(), TVolume::IsMarked(), TDataSet::IsMarked(), TVolumePosition::IsMatrixOwner(), ROOT::v5::TFormula::IsNormalized(), TSQLTableData::IsNumeric(), TBranchElement::IsObjectOwner(), TGeoNode::IsOffset(), TStatus::IsOk(), IsOnHeap(), TGeoOverlap::IsOverlap(), TGeoNode::IsOverlapping(), TGeoVolume::IsOverlappingCandidate(), TPoints3D::IsOwner(), TObjectSet::IsOwner(), TCollection::IsOwner(), TMap::IsOwnerValue(), TDataMember::IsPersistent(), TView3D::IsPerspective(), TVirtualStreamerInfo::IsRecovered(), TGeoPatternFinder::IsReflected(), TRotMatrix::IsReflection(), TGeoMatrix::IsReflection(), TGeoMatrix::IsRegistered(), TGeoVolume::IsReplicated(), TProofOutputFile::IsRetrieve(), TGeoMatrix::IsRotation(), TGeoMatrix::IsScale(), TGeoVolume::IsSelected(), TGeoMatrix::IsShared(), TGeoPatternFinder::IsSpacedOut(), TClass::IsStartingWithTObject(), TTreeFormula::IsString(), TClass::IsTObject(), TGeoMatrix::IsTranslation(), TGeoElement::IsUsed(), TGeoMaterial::IsUsed(), TProofMonSender::IsValid(), TVectorT< Double_t >::IsValid(), TMatrixTBase< Element >::IsValid(), TLine::IsVertical(), TPad::IsVertical(), TGeoNode::IsVirtual(), TGeoPhysicalNode::IsVisible(), TGeoPhysicalNode::IsVisibleFull(), TGeoPhysicalNode::IsVolAttributes(), TGeoVolume::IsXYZVoxels(), IsZombie(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TH1::LabelsOption(), TProof::Load(), TProof::LoadPackageOnClient(), TChain::LoadTree(), TTree::LoadTree(), TProofLog::LogToBox(), TNamed::ls(), TCollection::ls(), ls(), TGeoVolumeAssembly::MakeAssemblyFromVolume(), TDataSet::MakeCollection(), TGeoVolume::MakeCopyNodes(), TProofServ::MakeQueryResult(), TTreeViewer::MapTree(), TProof::MarkBad(), TH2::Merge(), TH3::Merge(), TH1::Merge(), TProofPlayerRemote::MergeOutput(), TProof::ModifyWorkerLists(), TGeoHMatrix::Multiply(), TGeoHMatrix::MultiplyLeft(), TGeoVoxelFinder::NeedRebuild(), ROOT::Internal::TTreeProxyGenerator::NeedToEmulate(), TApplication::Open(), TFileMerger::OpenExcessFiles(), TConvertClonesArrayToProxy::operator()(), TRef::operator=(), TGeoMatrix::operator=(), TGeoCombiTrans::operator=(), TPaletteAxis::Paint(), TMathText::Paint(), TSpline::Paint(), TParallelCoordRange::Paint(), TMarker::Paint(), THStack::Paint(), TGeoTrack::Paint(), TLine::Paint(), TPolyLine::Paint(), THistPainter::Paint(), TMultiGraph::Paint(), TMarker3DBox::Paint(), TText::Paint(), TNode::Paint(), TParallelCoordVar::Paint(), TParallelCoord::Paint(), TLatex::Paint(), TF1::Paint(), TAxis3D::PaintAxis(), TGaxis::PaintAxis(), THistPainter::PaintBarH(), TPad::PaintBorder(), TParallelCoordVar::PaintBoxPlot(), TGeoTrack::PaintCollect(), THistPainter::PaintColorLevels(), TGraph2DPainter::PaintContour(), THistPainter::PaintContour(), TEllipse::PaintEllipse(), TParallelCoord::PaintEntries(), TPad::PaintFillArea(), THistPainter::PaintFunction(), TGraphPainter::PaintGraph(), TGraphPainter::PaintGraphAsymmErrors(), TGraphPainter::PaintGraphBentErrors(), TGraphPainter::PaintGraphErrors(), TGraphPainter::PaintGrapHist(), TGraphPainter::PaintGraphPolar(), TGraphPainter::PaintGraphSimple(), THistPainter::PaintH3(), TGraphPainter::PaintHelper(), TParallelCoordVar::PaintHistogram(), TParallelCoordVar::PaintLabels(), THistPainter::PaintLego(), TPad::PaintLine(), TPad::PaintModified(), THistPainter::PaintPalette(), TGraphPolargram::PaintPolarDivisions(), TPad::PaintPolyLine(), TGraph2DPainter::PaintPolyMarker(), TPad::PaintPolyMarker(), THistPainter::PaintSurface(), THistPainter::PaintTable(), THistPainter::PaintTH2PolyColorLevels(), THistPainter::PaintTitle(), TGraph2DPainter::PaintTriangles_new(), TGraph2DPainter::PaintTriangles_old(), TDataSetManager::ParseInitOpts(), TDataSetManager::ParseUri(), TFileMerger::PartialMerge(), TPad::Pick(), TProof::PollForNewWorkers(), TClass::PostLoadCheck(), TProof::PrepareInputDataFile(), TGLVoxelPainter::PreparePalette(), TGLLegoPainter::PreparePalette(), TGLSurfacePainter::PreparePalette(), TFormula::Print(), TProof::Print(), TFileCollection::PrintDetailed(), TBranchElement::PrintValue(), TProofPlayerLite::Process(), TProofLite::Process(), TChain::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TDataSetManager::ProcessFile(), TSelectorDraw::ProcessFillObject(), TApplication::ProcessLine(), TRootBrowserLite::ProcessMessage(), THnBase::ProjectionAny(), TClass::Property(), R__WriteDestructorBody(), R__WriteMoveConstructorBody(), TLeafObject::ReadBasket(), TBasket::ReadBasketBuffers(), TBasket::ReadBasketBuffersUnzip(), TStreamerInfo::ReadBuffer(), TBranchElement::ReadLeavesMember(), TBranchElement::ReadLeavesMemberBranchCount(), TBranchElement::ReadLeavesMemberCounter(), TLeafC::ReadValue(), TTable::ReAlloc(), TProcessID::RecursiveRemove(), THashList::RecursiveRemove(), TObjArray::RecursiveRemove(), TList::RecursiveRemove(), TCollection::RecursiveRemove(), TGraph::RecursiveRemove(), TH1::RecursiveRemove(), TProof::RecvLogFile(), TGeoCombiTrans::ReflectX(), TGeoCombiTrans::ReflectY(), TGeoCombiTrans::ReflectZ(), TDataSetManagerFile::RegisterDataSet(), TProofLite::RegisterDataSet(), TProofServ::RegisterDataSets(), TGeoBranchArray::ReleaseInstance(), TBranchElement::ReleaseObject(), RooHashTable::remove(), TClonesArray::Remove(), TClonesArray::RemoveAt(), TDataSetManagerFile::RemoveDataSet(), TProofLite::RemoveDataSet(), RooDirItem::removeFromDir(), TLeaf::ResetAddress(), TClass::ResetCaches(), TGLAutoRotator::RotateScene(), TGeoCombiTrans::RotateX(), TGeoCombiTrans::RotateY(), TGeoCombiTrans::RotateZ(), TRint::Run(), TCanvas::RunAutoExec(), TAxis::SaveAttributes(), TGeoMedium::SavePrimitive(), TH1K::SavePrimitive(), TMathText::SavePrimitive(), TGeoEltu::SavePrimitive(), TGeoHalfSpace::SavePrimitive(), TGeoScaledShape::SavePrimitive(), TGeoTrd1::SavePrimitive(), TGeoTrd2::SavePrimitive(), TGeoCompositeShape::SavePrimitive(), TGeoParaboloid::SavePrimitive(), TText::SavePrimitive(), TGeoTube::SavePrimitive(), TGeoPara::SavePrimitive(), TGeoTorus::SavePrimitive(), TGeoBBox::SavePrimitive(), TGeoSphere::SavePrimitive(), TGeoCone::SavePrimitive(), TGeoPgon::SavePrimitive(), TParallelCoordVar::SavePrimitive(), TGeoArb8::SavePrimitive(), TGeoPcon::SavePrimitive(), TGeoHype::SavePrimitive(), TParallelCoord::SavePrimitive(), TGaxis::SavePrimitive(), TGeoXtru::SavePrimitive(), TGeoMaterial::SavePrimitive(), TEfficiency::SavePrimitive(), TLatex::SavePrimitive(), TGeoTranslation::SavePrimitive(), TGeoTubeSeg::SavePrimitive(), TGeoTrap::SavePrimitive(), TGeoConeSeg::SavePrimitive(), TGeoMixture::SavePrimitive(), TGeoRotation::SavePrimitive(), TGeoGtra::SavePrimitive(), TGeoCtub::SavePrimitive(), TGeoCombiTrans::SavePrimitive(), TF1::SavePrimitive(), TGeoHMatrix::SavePrimitive(), TH1::SavePrimitiveHelp(), TProof::SaveWorkerInfo(), TDataSetManagerFile::ScanDataSet(), TProofProgressLog::Select(), TApplicationServer::SendCanvases(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProof::SendDataSetStatus(), TApplicationRemote::SendFile(), TMonaLisaWriter::SendFileCheckpoint(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TProof::SendGroupView(), TProofMonSenderML::SendSummary(), TProofMonSenderSQL::SendSummary(), TLeafF::SetAddress(), TLeafD::SetAddress(), TLeafO::SetAddress(), TLeafB::SetAddress(), TLeafS::SetAddress(), TLeafI::SetAddress(), TBranchObject::SetAddress(), TLeafC::SetAddress(), TLeafL::SetAddress(), TBranch::SetAddress(), TBranchElement::SetAddress(), TProof::SetAlias(), TParallelCoord::SetAxesPosition(), TKDTreeBinning::SetBinsEdges(), TTree::SetBranchStatus(), TBuffer::SetBuffer(), TParallelCoord::SetCandleChart(), TParallelCoord::SetCurrentFirst(), TParallelCoordVar::SetCurrentLimits(), TParallelCoord::SetCurrentN(), TChain::SetEntryList(), TDSet::SetEntryList(), TTree::SetEntryList(), TChain::SetEntryListFile(), TChain::SetEventList(), TTree::SetEventList(), TParallelCoord::SetGlobalLogScale(), TParallelCoord::SetGlobalScale(), TParallelCoordVar::SetHistogramHeight(), TVirtualPacketizer::SetInitTime(), TParallelCoordVar::SetLogScale(), TText::SetMbTitle(), TProofPlayerRemote::SetMerging(), TParallelCoordEditor::SetModel(), TNamed::SetName(), TPolyMarker3D::SetName(), TNamed::SetNameTitle(), TObjectSpy::SetObject(), TBranch::SetObject(), TBranchElement::SetObject(), TProof::SetParallel(), TProof::SetParallelSilent(), TBranchElement::SetReadLeavesPtr(), TBuffer::SetReAllocFunc(), TGeoCombiTrans::SetRotation(), TProofMonSender::SetSendOptions(), TNamed::SetTitle(), TH1::SetTitle(), TClass::SetUnloaded(), TBranchObject::SetupAddresses(), TBranchElement::SetupAddressesImpl(), TProofServ::SetupCommon(), TParallelCoordVar::SetValues(), TParallelCoord::SetVertDisplay(), TGPack::SetVertical(), TTree::Show(), TClassTree::ShowCod(), TProof::ShowEnabledPackages(), TClassTree::ShowHas(), TProof::ShowMissingFiles(), TClassTree::ShowMul(), TProof::ShowPackages(), TClassTree::ShowRef(), TKey::Sizeof(), TNode::Sizeof3D(), TDecompChol::Solve(), TDecompBK::Solve(), TDecompLU::Solve(), TDecompQRH::Solve(), TDecompSVD::Solve(), TDecompSparse::Solve(), TDSet::SplitEntryList(), TProof::StartSlaves(), TGeoHelix::Step(), TGeoHelix::StepToPlane(), TProof::StopProcess(), TFile::SysSync(), TSelectorDraw::TakeAction(), TSelectorDraw::TakeEstimate(), TApplication::TApplication(), TSelectorDraw::Terminate(), TFileInfo::TFileInfo(), TFileInfoMeta::TFileInfoMeta(), TFormula::TFormula(), TGeoCombiTrans::TGeoCombiTrans(), TObjectRefSpy::TObjectRefSpy(), TCanvas::ToggleAutoExec(), TCanvas::ToggleEditor(), TCanvas::ToggleEventStatus(), TCanvas::ToggleToolBar(), TCanvas::ToggleToolTips(), TParallelCoordRange::TParallelCoordRange(), TPerfStats::TPerfStats(), TProof::TProof(), TProofChain::TProofChain(), TProtoClass::TProtoClass(), TProtoClass::TProtoRealData::TProtoRealData(), TDecompLU::TransSolve(), TDecompQRH::TransSolve(), TDecompSVD::TransSolve(), TProof::UnloadPackageOnClient(), TProof::UnloadPackages(), TBranchElement::Unroll(), TFileCollection::Update(), TGFileBrowser::Update(), TCling::UpdateClassInfoWithDecl(), TObjectTable::UpdateInstCount(), TProof::UploadPackage(), TProof::UploadPackageOnClient(), TH1::UseCurrentStyle(), TEfficiency::UsesBayesianStat(), TEfficiency::UsesPosteriorMode(), TEfficiency::UsesShortestInterval(), TEfficiency::UsesWeights(), TBranchElement::ValidateAddress(), TProofLite::VerifyDataSet(), TGeoVolume::Voxelize(), TFile::Write(), TBasket::WriteBuffer(), TStreamerInfo::WriteBufferAux(), TDirectoryFile::WriteObjectAny(), TDirectoryFile::WriteTObject(), RooPlot::~RooPlot(), TASLogHandler::~TASLogHandler(), TBranchElement::~TBranchElement(), TBuffer::~TBuffer(), TClass::~TClass(), TClonesArray::~TClonesArray(), TEfficiency::~TEfficiency(), TFolder::~TFolder(), TGeoCombiTrans::~TGeoCombiTrans(), TGeoVolume::~TGeoVolume(), TH1::~TH1(), ~TObject(), TObjectSet::~TObjectSet(), TPad::~TPad(), TPaveStats::~TPaveStats(), TPaveText::~TPaveText(), TProof::~TProof(), TProofChain::~TProofChain(), TProofServLogHandler::~TProofServLogHandler(), and TTree::~TTree().

Int_t TObject::TestBits ( UInt_t  f) const
inline

Definition at line 174 of file TObject.h.

Referenced by TProtoClass::FillTClass(), and TRef::GetObject().

void TObject::UseCurrentStyle ( )
virtual
void TObject::Warning ( const char *  method,
const char *  msgfmt,
  ... 
) const
virtual

Issue warning message.

Use "location" to specify the method where the warning occurred. Accepts standard printf formatting arguments.

Definition at line 904 of file TObject.cxx.

Referenced by AbstractMethod(), TProofNodes::ActivateWorkers(), TFileCollection::Add(), TH2Poly::Add(), TH1::Add(), TDSet::Add(), TBranch::AddBasket(), TGeoElementRN::AddDecay(), TGeoMixture::AddElement(), TChain::AddFile(), TChain::AddFileInfoList(), TChain::AddFriend(), TTree::AddFriend(), THnBase::AddInternal(), TGeoVolume::AddNodeOverlap(), TGeoVolumeAssembly::AddNodeOverlap(), TDocMacroDirective::AddParameter(), TDocLatexDirective::AddParameter(), TProcessID::AddProcessID(), TProofPlayer::AddQueryResult(), TClass::AddRule(), TestShutter::AddShutterItem(), TMultiDimFit::AddTestRow(), TF1::AddToGlobalList(), TParallelCoord::AddVariable(), TVirtualPacketizer::AddWorkers(), TProof::AddWorkers(), TDirectory::Append(), TASImage::Append(), TProofOutputFile::AssertDir(), TTable::At(), TXProofMgr::AttachSession(), TProofMgr::AttachSession(), TGLScenePad::AttemptDirectRenderer(), TServerSocket::Authenticate(), TSocket::Authenticate(), TAuthenticate::Authenticate(), TAuthenticate::AuthExists(), TSelHist::Begin(), TSelectorDraw::Begin(), TSelEvent::Begin(), TASImage::BeginPaint(), TASImage::Bevel(), TASImage::Blur(), TTree::BranchImp(), TTree::BranchImpRef(), TTree::BranchOld(), TTree::BronchExec(), TProofNodes::Build(), TStreamerInfo::Build(), TStreamerInfo::BuildCheck(), TStreamerInfo::BuildFor(), TProofProgressLog::BuildLogList(), TStreamerInfo::BuildOld(), TCling::Calc(), TWin32Thread::CancelPoint(), TSVG::CellArrayBegin(), TTeXDump::CellArrayBegin(), TPDF::CellArrayBegin(), TSVG::CellArrayEnd(), TTeXDump::CellArrayEnd(), TPDF::CellArrayEnd(), TSVG::CellArrayFill(), TTeXDump::CellArrayFill(), TPDF::CellArrayFill(), TFITSHDU::Change(), TTree::ChangeFile(), TEnvRec::ChangeValue(), TFoam::CheckAll(), TBufferFile::CheckByteCount(), TSelHandleDataSet::CheckCache(), THnBase::CheckConsistency(), TGeoElementRN::CheckDecays(), TApplicationRemote::CheckFile(), TGeoManager::CheckGeometry(), TDataSetManagerFile::CheckLocalCache(), TAuthenticate::CheckNetrc(), TBufferFile::CheckObject(), TKDE::CheckOptions(), TGeoChecker::CheckOverlaps(), TObjectTable::CheckPtrAndWarn(), TDataSetManager::CheckStagedStatus(), TH1::Chi2TestX(), TBackCompFitter::Chisquare(), ClassImp(), TQueryResultManager::CleanupQueriesDir(), TAuthenticate::ClearAuth(), TDataSetManagerFile::ClearCache(), TProof::ClearData(), TASImage::Clone(), TParallelMergingFile::Close(), TXSocket::Close(), TGeoManager::CloseGeometry(), TProofBench::CloseOutFile(), TApplicationRemote::CollectInput(), TTableDescriptor::ColumnByName(), TStreamerInfo::CompareContent(), TStreamerInfo::Compile(), TSystem::CompileMacro(), TGeoHype::ComputeBBox(), TGeoIntersection::ComputeBBox(), TNetFile::ConnectServer(), TEveGeoPolyShape::Construct(), TCanvas::Constructor(), TMinuit::Contour(), THtml::Convert(), TSystemFile::Copy(), TFormula::Copy(), TTree::CopyAddresses(), TASImage::CopyArea(), TTree::CopyEntries(), THtml::CopyFileFromEtcDir(), TGCocoa::CopyPixmap(), TRootControlBar::Create(), TTable::Create(), TXSocket::Create(), TDocOutput::CreateClassIndex(), TDocOutput::CreateHierarchy(), TClassDocOutput::CreateHierarchyDot(), THnBase::CreateHnAny(), THtml::CreateListOfClasses(), TDataSetManagerFile::CreateLsFile(), TStreamerInfoActions::TActionSequence::CreateReadMemberWiseActions(), TXProofServ::CreateServer(), TClassDocOutput::CreateSourceOutputStream(), TProofLite::CreateSymLinks(), TXNetFile::CreateXClient(), TASImage::Crop(), TASImage::CropSpans(), TDirectory::DecodeNameCycle(), THistPainter::DefineColorLevels(), TGeoPainter::DefineColors(), TGeoPcon::DefineSection(), TGeoXtru::DefineSection(), TCling::DeleteGlobal(), TCling::DeleteVariable(), TF1::Derivative(), TF1::Derivative2(), TF1::Derivative3(), TXProofMgr::DetachSession(), TProofMgr::DetachSession(), TRootContextMenu::Dialog(), TProof::DisablePackageOnClient(), TGeoTrd1::Divide(), TGeoTrd2::Divide(), TGraphAsymmErrors::Divide(), TProfile::Divide(), TProfile2D::Divide(), TProfile3D::Divide(), TGeoVolume::Divide(), TH1::Divide(), TGeoCtub::Divide(), THnBase::Divide(), TFormula::DoAddParameter(), TGLViewerEditor::DoASavImageStart(), TGLViewerEditor::DoASavImageStop(), TProofProgressMemoryPlot::DoAveragePlot(), TUnfoldSys::DoBackgroundSubtraction(), TTreeViewer::DoError(), TProofProgressLog::DoLog(), TProofProgressMemoryPlot::DoMasterPlot(), TGraphErrors::DoMerge(), TGraphAsymmErrors::DoMerge(), TGraphBentErrors::DoMerge(), TFormula::DoSetParameters(), TUnfold::DoUnfold(), TProof::DownloadPackage(), TProofProgressMemoryPlot::DoWorkerPlot(), TKDE::Draw(), TTable::Draw(), TFITSHDU::Draw(), TProofPlayer::DrawCanvas(), TProofBench::DrawCPU(), TASImage::DrawDashLine(), TProofBench::DrawDataSet(), TASImage::DrawFillArea(), TTeXDump::DrawFrame(), TPad::DrawFrame(), TPDF::DrawHatch(), TPostScript::DrawHatch(), TGX11TTF::DrawImage(), TGWin32::DrawImage(), TASImage::DrawLineInternal(), TTeXDump::DrawPolyLine(), TTeXDump::DrawPolyLineNDC(), TTeXDump::DrawPolyMarker(), TSVG::DrawPS(), TTeXDump::DrawPS(), TASImage::DrawRectangle(), TTreePlayer::DrawScript(), TASImage::DrawSegments(), TTreePlayer::DrawSelect(), TASImage::DrawText(), TEveGeoNode::DumpShapeTree(), TTreeViewer::EditExpression(), TTreeViewer::Empty(), TProof::EnablePackage(), TASImage::EndPaint(), TTreeFormula::EvalObject(), TLinearFitter::EvalRobust(), TRobustEstimator::Evaluate(), ExecAutoParse(), TPluginHandler::ExecPlugin(), TTreeViewer::ExecuteCommand(), TTreeViewer::ExecuteDraw(), TTreeViewer::ExecuteSpider(), TMultiLayerPerceptron::ExpandStructure(), TMultiLayerPerceptron::Export(), TDecompSparse::Factor(), TDecompSparse::Factor_sub1(), TDecompSparse::Factor_sub2(), TStatsFeedback::Feedback(), TProofPlayer::FeedBackCanvas(), TASPluginGS::File2ASImage(), TAuthenticate::FileExpand(), TProofPerfAnalysis::FileProcPlot(), TBranchSTL::Fill(), TStatistic::Fill(), TKDE::Fill(), THtml::TFileSysDB::Fill(), TTreeCache::FillBuffer(), TProofPerfAnalysis::FillFileDist(), TProofPerfAnalysis::FillFileDistOneSrv(), TDataSetManagerFile::FillLsDataSet(), TASImage::FillRectangle(), TASImage::FillSpans(), TProofPlayerLite::Finalize(), TProofPlayerRemote::Finalize(), TQueryResultManager::FinalizeQuery(), TEveShape::FindConvexHull(), TH2::FindFirstBinAbove(), TH3::FindFirstBinAbove(), TH1::FindFirstBinAbove(), TH2::FindLastBinAbove(), TH3::FindLastBinAbove(), TH1::FindLastBinAbove(), TTreeFormula::FindLeafForExpression(), TFractionFitter::FindPrediction(), TFractionFitter::Fit(), TBinomialEfficiencyFitter::Fit(), TMultiDimFit::Fit(), TASImage::Flip(), TProofServ::Fork(), TASImage::FromPad(), TASImage::FromWindow(), Memstat::TMemStatMng::generateBTID(), TCling::GenericError(), TKDE::GetAdaptiveWeights(), TASImage::GetArgbArray(), TASImage::GetArray(), TFITSHDU::GetArrayColumn(), TFITSHDU::GetArrayRow(), TKDTreeBinning::GetBinCenter(), TKDTreeBinning::GetBinContent(), TKDTreeBinning::GetBinDensity(), TKDTreeBinning::GetBinEdges(), TH1::GetBinErrorLow(), TH1::GetBinErrorUp(), TKDTreeBinning::GetBinMaxEdges(), TKDTreeBinning::GetBinMinEdges(), TKDTreeBinning::GetBinsEdges(), TKDTreeBinning::GetBinsMaxEdges(), TKDTreeBinning::GetBinsMinEdges(), TKDTreeBinning::GetBinVolume(), TKDTreeBinning::GetBinWidth(), TChain::GetBranchStatus(), TCollectionPropertyBrowsable::GetBrowsables(), TShape::GetBuffer3D(), TGeoShape::GetBuffer3D(), TVirtualBranchBrowsable::GetCollectionContainedType(), TGCocoa::GetColorBits(), TGClient::GetColorByName(), TRobustEstimator::GetCorrelation(), TFitResult::GetCorrelationMatrix(), TRobustEstimator::GetCovariance(), TFitResult::GetCovarianceMatrix(), TBackCompFitter::GetCovarianceMatrix(), TS3WebFile::GetCredentialsFromEnv(), TCling::GetCurrentMacroName(), TVirtualFFT::GetCurrentTransform(), TKDTreeBinning::GetDataMax(), TKDTreeBinning::GetDataMin(), TDataSetManagerFile::GetDataSet(), TProofBenchRunDataRead::GetDataSet(), TDataSetManagerAliEn::GetDataSet(), TDataSetManagerFile::GetDataSets(), TProof::GetDataSets(), TKDTreeBinning::GetDimData(), TProofPlayer::GetDrawArgs(), TEfficiency::GetEfficiencyErrorLow(), TEfficiency::GetEfficiencyErrorUp(), TProofChain::GetEntries(), TChain::GetEntries(), TDSetElement::GetEntries(), TDSet::GetEntries(), TBackCompFitter::GetErrors(), TFormula::GetExpFormula(), TFTP::GetFile(), TDataSetManagerAliEn::GetFindCommandsFromUri(), TKDE::GetFixedWeight(), TGClient::GetFontByName(), TRobustEstimator::GetHyperplane(), TUnfold::GetInputInverseEmatrix(), TProof::GetLastLog(), TBufferFile::GetLastProcessID(), TProofLite::GetListOfQueries(), TASImage::GetMask(), TRobustEstimator::GetMean(), TEveTrackPropagator::GetMinAng(), TProof::GetMissingFiles(), TXProofMgr::GetMssUrl(), TPacketizerFile::GetNextPacket(), TPacketizerUnit::GetNextPacket(), TProofServ::GetNextPacket(), TPacketizerAdaptive::GetNextUnAlloc(), TProofLite::GetNumberOfWorkers(), TRefArray::GetObjectUID(), TKDTreeBinning::GetOneDimBinEdges(), TApplication::GetOptions(), TKDE::GetOptions(), TProof::GetOutput(), TProof::GetParameter(), TXNetSystem::GetPathsInfo(), TProofBench::GetPerfSpecs(), TGLViewer::GetPictureUsingFBO(), TASImage::GetPixels(), TASImage::GetPixmap(), TFFTRealComplex::GetPointReal(), TASImage::GetPolygonSpans(), TF1::GetQuantiles(), TF1::GetRandom(), TF2::GetRandom2(), TF3::GetRandom3(), TRobustEstimator::GetRDistances(), TChain::GetReadEntry(), TFile::GetRecordHeader(), TDocMacroDirective::GetResult(), TASImage::GetRgbaArray(), TUnfold::GetRhoIFromMatrix(), TASImage::GetScanline(), TCling::GetSecurityError(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), THnSparse::GetSparseFractionMem(), TFileStager::GetStaged(), TClass::GetStreamer(), TFile::GetStreamerInfoList(), TChainIndex::GetSubTreeIndex(), TBackCompFitter::GetSumLog(), TFITSHDU::GetTabRealVectorCell(), TFITSHDU::GetTabRealVectorCells(), TFITSHDU::GetTabRealVectorColumn(), TFITSHDU::GetTabStringColumn(), TCling::GetTopLevelMacroName(), TKDTreeBinning::GetTree(), TEventIterTree::GetTrees(), TDataMember::GetUnitSize(), TTreeFormula::GetValueFromMethod(), TTreeFormula::GetValuePointerFromMethod(), TASImage::GetVecArray(), TPad::GetViewer3D(), TWinNTSystem::GetWorkingDirectory(), TRotation::GetXPhi(), TRotation::GetXPsi(), TASImage::Gradient(), TF1::GradientPar(), TASImage::Gray(), TProofLog::Grep(), TGLEventHandler::HandleButton(), TTVLVContainer::HandleButton(), TProofServ::HandleCache(), TGLEventHandler::HandleCrossing(), TProofServ::HandleDataSets(), TDocParser::HandleDirective(), TEveViewer::HandleElementPaste(), TXSlave::HandleError(), TGLEventHandler::HandleEvent(), TGLEventHandler::HandleFocusChange(), TXProofServ::HandleInput(), TXProofMgr::HandleInput(), TXSlave::HandleInput(), TProof::HandleInputMessage(), TProof::HandleLibIncPath(), TProof::HandleOutputOptions(), TProofServ::HandleProcess(), TProofServ::HandleQueryList(), TProofServ::HandleRemove(), TApplicationServer::HandleSocketInput(), TProofServ::HandleSocketInput(), TProofServ::HandleSubmerger(), TXProofServ::HandleTermination(), TProofServ::HandleWorkerLists(), TEveTrackPropagator::HelixIntersectPlane(), TASImage::HSV(), TGeoManager::Import(), TOutputListSelectorDataMap::Init(), TBranchClones::Init(), TPSocket::Init(), TDataSetManagerFile::Init(), TBtree::Init(), TProofOutputFile::Init(), TProofLite::Init(), TTreeCacheUnzip::Init(), TBranch::Init(), TFile::Init(), TTreeFormula::Init(), TGeoManager::Init(), TClass::Init(), TProof::Init(), TProofLite::InitDataSetManager(), TBranchElement::InitializeOffsets(), TDataSetManagerFile::InitLocalCache(), TProof::InitMembers(), TDecompSparse::InitPivot_sub1(), TDecompSparse::InitPivot_sub3(), TAuthenticate::InitRandom(), TStreamerInfo::InsertArtificialElements(), TF3::Integral(), TF2::Integral(), TF1::Integral(), TF1::IntegralMultiple(), TF1::IntegralOneDim(), TGraphDelaunay::Interpolate(), TXSlave::Interrupt(), RooStats::SamplingDistribution::InverseCDFInterpolate(), TDocParser::IsDirective(), TCling::IsErrorMessagesEnabled(), TFumili::IsFixed(), TPainter3dAlgorithms::IsoSurface(), TNetFileStager::IsStaged(), TXNetFileStager::IsStaged(), TBufferJSON::JsonWriteMember(), TThread::Kill(), TH2::KolmogorovTest(), TH3::KolmogorovTest(), TH1::KolmogorovTest(), TProfile::LabelsOption(), TProfile2D::LabelsOption(), TAxis::LabelsOption(), TH1::LabelsOption(), TGListBox::Layout(), TFITSHDU::LoadHDU(), TCling::LoadLibraryMap(), TROOT::LoadMacro(), TProof::LoadPackageOnClient(), TGeoGlobalMagField::Lock(), TEveTrackPropagator::LoopToBounds(), TDataSet::ls(), TRotation::MakeBasis(), THistPainter::MakeChopt(), TTree::MakeCode(), TProofBench::MakeDataSet(), TPrincipal::MakeHistograms(), TGeoCompositeShape::MakeNode(), TGWin32::MakeOpaqueColors(), TGX11::MakeOpaqueColors(), TGeoBuilder::MakePara(), TFile::MakeProject(), TPie::MakeSlices(), TEveTrack::MakeTrack(), TFile::Map(), TPacketizerAdaptive::MarkBad(), TXProofMgr::MatchUrl(), MayNotUse(), TOutputListSelectorDataMap::Merge(), TSeqCollection::Merge(), TASImage::Merge(), TH1::Merge(), TASImage::Mirror(), TProof::ModifyWorkerLists(), TDataSetManager::MonitorUsedSpace(), TSystemFile::Move(), TH1::Multiply(), TTable::NaN(), TGeoBuilder::Node(), TIdleTOTimer::Notify(), TProof::NotifyLogMsg(), TDataSetManagerFile::NotifyUpdate(), TSVG::Open(), TTeXDump::Open(), TPDF::Open(), TPostScript::Open(), TFile::Open(), TProof::Open(), TGX11::OpenDisplay(), TFile::OpenFromCache(), TProofBench::OpenOutFile(), TRotation::operator()(), TLorentzRotation::operator()(), TEfficiency::operator+=(), TPerfStats::PacketEvent(), TASImage::Pad(), TEveGeoShape::Paint(), TPie::Paint(), TASImage::Paint(), TEfficiency::Paint(), THistPainter::PaintContour(), TPad::PaintFillArea(), TXSlave::ParseBuffer(), TProof::ParseConfigField(), TDataSetManager::ParseDataSetSrvMaps(), TApplication::ParseRemoteLine(), TDataSetManager::ParseUri(), TTreeFormula::ParseWithLeaf(), TFileMerger::PartialMerge(), TSlave::Ping(), TProofLite::PollForNewWorkers(), TASImage::PolyPoint(), TClass::PostLoadCheck(), TXNetSystem::Prepare(), TEventIterTree::PreProcessEvent(), TProofNodes::Print(), TPrincipal::Print(), TFormula::Print(), TPad::Print(), TF1::Print(), TFITSHDU::PrintColumnInfo(), TFITSHDU::PrintFileMetadata(), TFITSHDU::PrintFullTable(), TProofPlayerLite::Process(), TSelHandleDataSet::Process(), TProofLite::Process(), TProofPlayer::Process(), TProofPlayerRemote::Process(), TProof::Process(), TDataSetManager::ProcessFile(), TSelectorDraw::ProcessFillObject(), TApplication::ProcessLine(), TRootCanvas::ProcessMessage(), TTreeViewer::ProcessMessage(), TProofServ::ProcessNext(), TEveSceneList::ProcessSceneChanges(), TProofPlayerRemote::Progress(), TProofPlayerSuperMaster::Progress(), TAuthenticate::PromptPasswd(), TAuthenticate::PromptUser(), TVector3::PseudoRapidity(), TFTP::PutFile(), TASImage::PutPixel(), TXProofMgr::QuerySessions(), TFITSHDU::ReadAsHistogram(), TFITSHDU::ReadAsImage(), TFITSHDU::ReadAsMatrix(), TLeafObject::ReadBasket(), TBasket::ReadBasketBuffers(), TXProofMgr::ReadBuffer(), TStreamerInfo::ReadBuffer(), TPythia6Decayer::ReadDecayTable(), TDataSetManager::ReadGroupConfig(), TASImage::ReadImage(), TKeySQL::ReadKeyObject(), TBranchElement::ReadLeavesMakeClass(), TKey::ReadObjectAny(), TCling::ReadRootmapFile(), TTree::ReadStream(), TFile::ReadStreamerInfo(), TTable::ReAlloc(), TProfile::Rebin(), TH1::Rebin(), TProfile2D::Rebin2D(), THistPainter::RecalculateRange(), TProofServ::ReceiveFile(), TGeoShapeAssembly::RecomputeBoxLast(), TQueryResult::RecordEnd(), TApplicationRemote::RecvLogFile(), TProof::RecvLogFile(), TUnixSystem::RedirectOutput(), TProofServ::RedirectOutput(), RegisterAddressInRepository(), TColorGradient::RegisterColor(), TDataSetManagerFile::RegisterDataSet(), TProofServ::RegisterDataSets(), TTreeFormula::RegisterDimensions(), TCling::RegisterModule(), TBonjourRegistrar::RegisterService(), TGeoMatrix::RegisterYourself(), TBranchElement::ReleaseObject(), TLinearFitter::ReleaseParameter(), TEntryList::RelocatePaths(), TObjectTable::Remove(), TProofLite::Remove(), TDataSetManagerFile::RemoveDataSet(), TEveSelection::RemoveElementLocal(), TSelHandleDataSet::RemoveFile(), TTreeViewer::RemoveItem(), TProof::RemoveWorkers(), TFile::ReOpen(), THostAuth::ReOrder(), TProofMgr::ReplaceSubdirs(), TGeoManager::ReplaceVolume(), TProofLite::RequestStagingDataSet(), TXProofMgr::Reset(), TPacketizer::Reset(), TPacketizerAdaptive::Reset(), TProofMgr::Reset(), TCling::Reset(), TCling::ResetAll(), TClass::ResetClassInfo(), TCling::ResetGlobalVar(), TMemFile::ResetObjects(), TPad::ResizePad(), TBonjourResolver::ResolveBonjourRecord(), TProofServ::ResolveKeywords(), TProofLogElem::Retrieve(), TCling::RewindDictionary(), TAuthenticate::RfioAuth(), TRotation::Rotate(), TRotation::RotateAxes(), TGeoTranslation::RotateX(), TGeoTranslation::RotateY(), TGeoTranslation::RotateZ(), TProofBenchRunCPU::Run(), TProofBenchRunDataRead::Run(), TSystem::Run(), TProofBench::RunCPU(), TProofBench::RunCPUx(), TProofBench::RunDataSet(), TProofBench::RunDataSetx(), TEveGeoShape::Save(), TProofLog::Save(), TEveGeoNode::Save(), TCling::SaveContext(), TParallelCoord::SaveEntryLists(), TCling::SaveGlobalsContext(), TGLViewer::SavePictureUsingBB(), TGLViewer::SavePictureUsingFBO(), TGGC::SavePrimitive(), TQueryResultManager::SaveQuery(), TQueryResult::SaveSelector(), TParallelCoord::SaveTree(), TProof::SaveWorkerInfo(), TASImage::Scale(), TDataSetManagerFile::ScanDataSet(), TDataSetManager::ScanFile(), TQueryResultManager::ScanPreviousQueries(), TSpectrum::Search(), TSpectrum::SearchHighRes(), TProofMonSenderML::SendDataSetInfo(), TProofMonSenderSQL::SendDataSetInfo(), TProofMonSenderML::SendFileInfo(), TProofMonSenderSQL::SendFileInfo(), TProofLite::SendInputDataFile(), TXProofMgr::SendMsgToUsers(), TProofMgr::SendMsgToUsers(), TSQLMonitoringWriter::SendParameters(), TUDPSocket::SendProcessIDs(), TSocket::SendProcessIDs(), TUDPSocket::SendStreamerInfos(), TSocket::SendStreamerInfos(), TBranchElement::SetAddress(), TEfficiency::SetBetaAlpha(), TEfficiency::SetBetaBeta(), TEfficiency::SetBins(), TBranchElement::SetBranchCount(), TTree::SetBranchStatus(), TTree::SetCacheSizeAux(), TWin32Thread::SetCancelAsynchronous(), TWin32Thread::SetCancelDeferred(), TWin32Thread::SetCancelOff(), TWin32Thread::SetCancelOn(), TGeoCone::SetConeDimensions(), TEfficiency::SetConfidenceLevel(), TGGC::SetDashList(), TKDE::SetData(), TOutputListSelectorDataMap::SetDataMembers(), TEveTrackListProjected::SetDepthLocal(), TEveGeoShapeProjected::SetDepthLocal(), TUnixSystem::SetDisplay(), TGCocoa::SetDoubleBuffer(), TKDE::SetDrawOptions(), TTree::SetEntries(), TCling::SetErrmsgcallback(), TCling::SetErrorMessages(), TGeoPainter::SetExplodedView(), TProof::SetFeedback(), TTree::SetFileNumber(), TF1::SetFitResult(), TPythia6Decayer::SetForceDecay(), TCling::SetGetline(), TGMainFrame::SetIconPixmap(), TASImage::SetImage(), TGLAutoRotator::SetImageGUIOutMode(), TUnfold::SetInput(), TVector3::SetMag(), TGraph2D::SetMargin(), TMultiDimFit::SetMaxAngle(), TEveTrackPropagator::SetMinAng(), TMultiDimFit::SetMinAngle(), TKDTreeBinning::SetNBins(), TKDE::SetNBins(), TLegend::SetNColumns(), TGraph2D::SetNpx(), TF1::SetNpx(), TF2::SetNpy(), TGraph2D::SetNpy(), TF3::SetNpz(), TGeoPainter::SetNsegments(), TBranch::SetObject(), TProofBench::SetOutFile(), TASImage::SetPalette(), TProof::SetParameter(), TGStatusBar::SetParts(), TParticle::SetPdgCode(), TGeoManager::SetPdgName(), TGeoPNEntry::SetPhysicalNode(), TProofLite::SetProofServEnv(), TPie::SetRadius(), TProof::SetRealTimeLog(), TXProofMgr::SetROOTVersion(), TProofPlayerRemote::SetSelectorDataMembersFromOutputList(), TProofMonSender::SetSendOptions(), TMultiLayerPerceptron::SetTestDataSet(), TGGroupFrame::SetTitle(), TBox::SetToolTipText(), TMultiLayerPerceptron::SetTrainingDataSet(), TGCocoa::SetTypeList(), TXProofServ::Setup(), TBranchObject::SetupAddresses(), TProofServ::SetupCommon(), TProofLite::SetupWorkers(), TPieSlice::SetValue(), TGeoPainter::SetVisOption(), TGeoManager::SetVolumeAttribute(), TEfficiency::SetWeight(), TGCocoa::SetWMTransientHint(), TGeoHelix::SetXYcurvature(), TDataSetManagerFile::ShowCache(), TProof::ShowDataSet(), TDataSetManager::ShowDataSets(), TProof::ShowMissingFiles(), TProof::ShowPackages(), TXProofMgr::ShowROOTVersions(), TXProofMgr::ShowWorkers(), TSelHist::SlaveBegin(), TSelEventGen::SlaveBegin(), TSelVerifyDataSet::SlaveBegin(), TSelEvent::SlaveBegin(), TSelEventGen::SlaveTerminate(), TASImage::Slice(), TH2::Smooth(), TKDTreeBinning::SortOneDimBinEdges(), TAuthenticate::SshAuth(), TUnixSystem::StackTrace(), TXNetFileStager::Stage(), TFileStager::Stage(), TNetXNGSystem::Stage(), TBenchmark::Start(), TGLAutoRotator::StartImageAutoSaveWithGUISettings(), TASImage::StartPaletteEditor(), TProofCondor::StartSlaves(), TTreePlayer::StartViewer(), TDSet::StartViewer(), TEveWindowSlot::StopEmbedding(), TTable::StreamerHeader(), TBufferFile::StreamObject(), TH1::Sumw2(), TEveViewer::SwitchStereo(), TTreeViewer::SwitchTree(), TProof::SystemCmd(), TAFS::TAFS(), TStreamerInfo::TagFile(), TClass::TClass(), TColor::TColor(), TDSetElement::TDSetElement(), TEfficiency::TEfficiency(), TProof::TerminateWorker(), TPrincipal::Test(), TEveGedEditor::TEveGedEditor(), TEventIter::TEventIter(), TGenericTable::TGenericTable(), TGeoElementRN::TGeoElementRN(), TGeoMaterial::TGeoMaterial(), TGeoVolume::TGeoVolume(), TGraphTime::TGraphTime(), TH1::TH1(), TH2::TH2(), TH3::TH3(), THStack::THStack(), TASImage::Tile(), TKDTreeBinning::TKDTreeBinning(), TKey::TKey(), TMapFile::TMapFile(), TMultiLayerPerceptron::TMultiLayerPerceptron(), TParallelCoord::TParallelCoord(), TProof::TProof(), TProofBench::TProofBench(), TProofServ::TProofServ(), TQConnection::TQConnection(), TGeoManager::TransformVolumeToAssembly(), TRefArray::TRefArray(), TRobustEstimator::TRobustEstimator(), TStreamerSTL::TStreamerSTL(), TTable::TTable(), TUnfold::TUnfold(), TVirtualBranchBrowsable::TVirtualBranchBrowsable(), TNetSystem::Unlink(), TProofServ::UnlinkDataDir(), TProofServ::UnloadPackage(), TProof::UnloadPackageOnClient(), TASImage::UnZoom(), TGGC::UpdateValues(), TProofMgr::UploadFiles(), TProof::UploadPackageOnClient(), TNeuron::UseBranch(), TGDMLParse::UsrProcess(), TGSelectBox::ValidateAlias(), TProofSuperMaster::ValidateDSet(), TProof::ValidateDSet(), TPacketizer::ValidateFiles(), TPacketizerAdaptive::ValidateFiles(), TASImage::Vectorize(), TFile::Write(), TBasket::WriteBuffer(), TStreamerInfo::WriteBufferAux(), TDataSetManagerFile::WriteDataSet(), TPythia6Decayer::WriteDecayTable(), TDocOutput::WriteHtmlFooter(), TDocOutput::WriteHtmlHeader(), TBufferFile::WriteObjectAny(), TBufferJSON::WriteObjectAny(), TBufferFile::WriteObjectClass(), TPerfStats::WriteQueryLog(), TKeyXML::XmlReadAny(), TASImage::Zoom(), TCling::~TCling(), TDocParser::~TDocParser(), TGeoMatrix::~TGeoMatrix(), and TGLWidget::~TGLWidget().

Int_t TObject::Write ( const char *  name = 0,
Int_t  option = 0,
Int_t  bufsize = 0 
)
virtual

Write this object to the current directory.

For more see the const version of this method.

Reimplemented in TTree, TSQLFile, TFile, TDirectory, TDataSet, TDirectoryFile, TCollection, TXMLFile, TMap, TBuffer, and TParallelMergingFile.

Definition at line 823 of file TObject.cxx.

Referenced by ClassImp(), TTreeCloner::CopyProcessIds(), TMVA::MethodBase::CreateMVAPdfs(), do_anadist(), do_anadist_ds(), do_anadist_plot(), TProofPerfAnalysis::DoDraw(), RooStats::SamplingDistPlot::DumpToFile(), TMVA::Factory::EvaluateAllMethods(), TGeoVolume::Export(), TGeoManager::Export(), RooStats::HistFactory::FitModelAndPlot(), RooStats::NeymanConstruction::GetInterval(), TProofServ::HandleArchive(), TProof::HandleOutputOptions(), TMVA::RuleFitParams::MakeGDPath(), TFileMerger::MergeRecursive(), TFileIter::NextEventPut(), TProofBench::OpenOutFile(), TProof::PrepareInputDataFile(), RooStats::HypoTestInverter::RebuildDistributions(), TEntryList::Relocate(), TProof::Retrieve(), RooUnitTest::runCompTests(), TParallelCoord::SaveEntryLists(), TEveGeoShape::SaveExtract(), TEveGeoNode::SaveExtract(), TDirectoryFile::SaveObjectAs(), TDirectory::SaveObjectAs(), TProofPlayer::SavePartialResults(), TProof::SavePerfTree(), TQueryResultManager::SaveQuery(), TRecorderRecording::Stop(), testPoisson(), TBuffer::Write(), TMap::Write(), TCollection::Write(), TDirectoryFile::Write(), TDataSet::Write(), write(), TTree::Write(), TMVA::Factory::WriteDataInformation(), TDataSetManagerFile::WriteDataSet(), TEveGeoShape::WriteExtract(), TEveGeoNode::WriteExtract(), TMVA::MethodPDEFoam::WriteFoamsToFile(), TMVA::MethodRuleFit::WriteMonitoringHistosToFile(), TMVA::MethodLikelihood::WriteMonitoringHistosToFile(), TMVA::MethodBDT::WriteMonitoringHistosToFile(), TMVA::MethodCuts::WriteMonitoringHistosToFile(), writeSMatrix(), writeSMatrixSym(), RooStats::HistFactory::Sample::writeToFile(), RooStats::HistFactory::Data::writeToFile(), RooStats::HistFactory::Measurement::writeToFile(), RooStats::HistFactory::HistoSys::writeToFile(), RooWorkspace::writeToFile(), RooStats::HistFactory::HistoFactor::writeToFile(), RooStats::HistFactory::ShapeSys::writeToFile(), RooStats::HistFactory::ShapeFactor::writeToFile(), RooStats::HistFactory::StatError::writeToFile(), writeTrack(), and TMVA::OptimizeConfigParameters::~OptimizeConfigParameters().

Int_t TObject::Write ( const char *  name = 0,
Int_t  option = 0,
Int_t  bufsize = 0 
) const
virtual

Write this object to the current directory.

The data structure corresponding to this object is serialized. The corresponding buffer is written to the current directory with an associated key with name "name".

Writing an object to a file involves the following steps:

  • Creation of a support TKey object in the current directory. The TKey object creates a TBuffer object.
  • The TBuffer object is filled via the class::Streamer function.
  • If the file is compressed (default) a second buffer is created to hold the compressed buffer.
  • Reservation of the corresponding space in the file by looking in the TFree list of free blocks of the file.
  • The buffer is written to the file.

Bufsize can be given to force a given buffer size to write this object. By default, the buffersize will be taken from the average buffer size of all objects written to the current file so far.

If a name is specified, it will be the name of the key. If name is not given, the name of the key will be the name as returned by GetName().

The option can be a combination of: kSingleKey, kOverwrite or kWriteDelete Using the kOverwrite option a previous key with the same name is overwritten. The previous key is deleted before writing the new object. Using the kWriteDelete option a previous key with the same name is deleted only after the new object has been written. This option is safer than kOverwrite but it is slower. The kSingleKey option is only used by TCollection::Write() to write a container with a single key instead of each object in the container with its own key.

An object is read from the file into memory via TKey::Read() or via TObject::Read().

The function returns the total number of bytes written to the file. It returns 0 if the object cannot be written.

Reimplemented in TTree, TSQLFile, TFile, TDirectory, TDataSet, TDirectoryFile, TCollection, TXMLFile, TMap, TBuffer, and TParallelMergingFile.

Definition at line 802 of file TObject.cxx.

Friends And Related Function Documentation

friend class TClonesArray
friend

Member Data Documentation

UInt_t TObject::fBits
private
Long_t TObject::fgDtorOnly = 0
staticprivate

Definition at line 64 of file TObject.h.

Referenced by GetDtorOnly(), and SetDtorOnly().

Bool_t TObject::fgObjectStat = kTRUE
staticprivate

Definition at line 65 of file TObject.h.

Referenced by GetObjectStat(), SetObjectStat(), TObject(), and ~TObject().

UInt_t TObject::fUniqueID
private

Definition at line 61 of file TObject.h.

Referenced by Copy(), GetUniqueID(), operator=(), SetUniqueID(), and TObject().


The documentation for this class was generated from the following files: