472 case kchar:
return 0;
477 case kBits:
return 0;
513 fMethodBit(tfl.fMethodBit),
514 fPrevious(tfl.fPrevious)
538 fTree->fFriendLockStatus &= ~(fMethodBit &
kBitMask);
565 entryInRange = firstEntry;
568 entryInRange = firstEntry - pedestal;
576 if (autoflush <= 0) {
579 fStartEntry = pedestal + entryInRange - entryInRange%autoflush;
604 auto autoFlush = fTree->GetAutoFlush();
605 if (autoFlush > 0)
return autoFlush;
606 if (fEstimatedSize > 0)
return fEstimatedSize;
608 Long64_t zipBytes = fTree->GetZipBytes();
610 fEstimatedSize = fTree->GetEntries() - 1;
611 if (fEstimatedSize <= 0)
615 Long64_t cacheSize = fTree->GetCacheSize();
616 if (cacheSize == 0) {
627 if (cacheSize <= 0) {
628 cacheSize = 30000000;
630 clusterEstimate = fTree->GetEntries() * cacheSize / zipBytes;
632 fEstimatedSize = clusterEstimate ? clusterEstimate : 1;
634 return fEstimatedSize;
643 fStartEntry = fNextEntry;
644 if (fTree->fNClusterRange || fTree->GetAutoFlush() > 0) {
645 if (fClusterRange == fTree->fNClusterRange) {
648 fNextEntry += GetEstimatedClusterSize();
650 if (fStartEntry > fTree->fClusterRangeEnd[fClusterRange]) {
653 if (fClusterRange == fTree->fNClusterRange) {
656 fNextEntry += GetEstimatedClusterSize();
658 Long64_t clusterSize = fTree->fClusterSize[fClusterRange];
659 if (clusterSize == 0) {
660 clusterSize = GetEstimatedClusterSize();
662 fNextEntry += clusterSize;
663 if (fNextEntry > fTree->fClusterRangeEnd[fClusterRange]) {
667 fNextEntry = fTree->fClusterRangeEnd[fClusterRange] + 1;
673 fNextEntry = fStartEntry + GetEstimatedClusterSize();
675 if (fNextEntry > fTree->GetEntries()) {
676 fNextEntry = fTree->GetEntries();
687 fNextEntry = fStartEntry;
688 if (fTree->fNClusterRange || fTree->GetAutoFlush() > 0) {
689 if (fClusterRange == 0 || fTree->fNClusterRange == 0) {
692 fStartEntry -= GetEstimatedClusterSize();
697 if (fClusterRange == 0) {
701 Long64_t clusterSize = fTree->fClusterSize[fClusterRange];
702 if (clusterSize == 0) {
703 clusterSize = GetEstimatedClusterSize();
705 fStartEntry -= clusterSize;
710 fStartEntry = fNextEntry - GetEstimatedClusterSize();
712 if (fStartEntry < 0) {
823, fDefaultEntryOffsetLen(1000)
829, fAutoSave( -300000000)
830, fAutoFlush(-30000000)
862, fFriendLockStatus(0)
864, fCacheDoAutoInit(
kTRUE)
865, fCacheDoClusterPrefetch(
kFALSE)
867, fIMTEnabled(
ROOT::IsImplicitMTEnabled())
868, fNEntriesSinceSorting(0)
901 if (strlen(title) > 2) {
902 if (title[0] ==
'/') {
903 Branch(title+1,32000,splitlevel);
918#ifdef R__TRACK_BASKET_ALLOC_TIME
919 Info(
"TTree::~TTree",
"For tree %s, allocation time is %lluus.",
GetName(), fAllocationTime.load());
1054 Error(
"AddBranchToCache",
"Could not load a tree");
1063 Error(
"AddBranchToCache",
"No tree is available. Branch was not added to the cache");
1069 Error(
"AddBranchToCache",
"No file is available. Branch was not added to the cache");
1074 Error(
"AddBranchToCache",
"No cache is available, branch not added");
1077 return tc->
AddBranch(bname,subbranches);
1093 Error(
"AddBranchToCache",
"Could not load a tree");
1101 Error(
"AddBranchToCache",
"Error adding branch");
1106 Error(
"AddBranchToCache",
"No tree is available. Branch was not added to the cache");
1112 Error(
"AddBranchToCache",
"No file is available. Branch was not added to the cache");
1117 Error(
"AddBranchToCache",
"No cache is available, branch not added");
1137 Error(
"DropBranchFromCache",
"Could not load a tree");
1146 Error(
"DropBranchFromCache",
"No tree is available. Branch was not dropped from the cache");
1152 Error(
"DropBranchFromCache",
"No file is available. Branch was not dropped from the cache");
1157 Error(
"DropBranchFromCache",
"No cache is available, branch not dropped");
1176 Error(
"DropBranchFromCache",
"Could not load a tree");
1184 Error(
"DropBranchFromCache",
"Error dropping branch");
1189 Error(
"DropBranchFromCache",
"No tree is available. Branch was not dropped from the cache");
1195 Error(
"DropBranchFromCache",
"No file is available. Branch was not dropped from the cache");
1200 Error(
"DropBranchFromCache",
"No cache is available, branch not dropped");
1235 const auto friendHasValidIndex = [&] {
1240 if ((isMainReshuffled || isFriendReshuffled) && !friendHasValidIndex) {
1241 const auto reshuffledTreeName = isMainReshuffled ? mainTree.
GetName() : friendTree.
GetName();
1242 const auto msg =
"Tree '%s' has the kEntriesReshuffled bit set, and cannot be used as friend nor can be added as "
1243 "a friend unless the main tree has a TTreeIndex on the friend tree '%s'. You can also unset the "
1244 "bit manually if you know what you are doing.";
1245 Error(
"AddFriend", msg, reshuffledTreeName, friendTree.
GetName());
1330 bool canAddFriend =
true;
1334 Warning(
"AddFriend",
"FriendElement %s in file %s has less entries %lld than its parent Tree: %lld", treename,
1338 Error(
"AddFriend",
"Cannot find tree '%s' in file '%s', friend not added", treename, filename);
1339 canAddFriend =
false;
1364 bool canAddFriend =
true;
1368 Warning(
"AddFriend",
"FriendElement %s in file %s has less entries %lld than its parent tree: %lld", treename,
1372 Error(
"AddFriend",
"Cannot find tree '%s' in file '%s', friend not added", treename,
file->GetName());
1373 canAddFriend =
false;
1399 Warning(
"AddFriend",
"FriendElement '%s' in file '%s' has less entries %lld than its parent tree: %lld",
1406 tree->RemoveExternalFriend(fe);
1499 if (opt.
Contains(
"flushbaskets")) {
1500 if (
gDebug > 0)
Info(
"AutoSave",
"calling FlushBaskets \n");
1519 if (
file)
file->WriteStreamerInfo();
1533 const char* writeStlWithoutProxyMsg =
"The class requested (%s) for the branch \"%s\""
1534 " is an instance of an stl collection and does not have a compiled CollectionProxy."
1535 " Please generate the dictionary for this collection (%s) to avoid to write corrupted data.";
1549 Error(
"Branch", writeStlWithoutProxyMsg,
1553 return Branch(branchname, classname, (
void*) addobj, bufsize, splitlevel);
1556 void** addr = (
void**) addobj;
1560 if (ptrClass && claim) {
1567 Error(
"Branch",
"The class requested (%s) for \"%s\" is different from the type of the pointer passed (%s)",
1570 }
else if (actualClass && (claim != actualClass) && !actualClass->
InheritsFrom(claim)) {
1575 Error(
"Branch",
"The actual class (%s) of the object provided for the definition of the branch \"%s\" does not inherit from %s",
1581 Error(
"Branch", writeStlWithoutProxyMsg,
1585 return Branch(branchname, classname, (
void*) addobj, bufsize, splitlevel);
1595 Error(
"Branch",
"The pointer specified for %s is not of a class known to ROOT", branchname);
1599 void** addr = (
void**) addobj;
1600 if (addr && *addr) {
1603 Warning(
"Branch",
"The actual TClass corresponding to the object provided for the definition of the branch \"%s\" is missing.\n\tThe object will be truncated down to its %s part",
1604 branchname, ptrClass->
GetName());
1605 actualClass = ptrClass;
1606 }
else if ((ptrClass != actualClass) && !actualClass->
InheritsFrom(ptrClass)) {
1607 Error(
"Branch",
"The actual class (%s) of the object provided for the definition of the branch \"%s\" does not inherit from %s", actualClass->
GetName(), branchname, ptrClass->
GetName());
1611 actualClass = ptrClass;
1614 Error(
"Branch", writeStlWithoutProxyMsg,
1618 return Branch(branchname, actualClass->
GetName(), (
void*) addobj, bufsize, splitlevel);
1630 Error(
"Branch", writeStlWithoutProxyMsg,
1633 }
else if (claim == 0) {
1634 Error(
"Branch",
"The pointer specified for %s is not of a class known to ROOT and %s is not a known class", branchname, classname);
1641 Error(
"Branch",
"Reference interface requires a valid object (for branch: %s)!", branchname);
1645 if (ptrClass && claim) {
1652 Error(
"Branch",
"The class requested (%s) for \"%s\" is different from the type of the object passed (%s)",
1655 }
else if (actualClass && (claim != actualClass) && !actualClass->
InheritsFrom(claim)) {
1660 Error(
"Branch",
"The actual class (%s) of the object provided for the definition of the branch \"%s\" does not inherit from %s",
1666 Warning(
"Branch",
"The actual TClass corresponding to the object provided for the definition of the branch \"%s\" is missing.\n\tThe object will be truncated down to its %s part",
1667 branchname, ptrClass->
GetName());
1668 actualClass = ptrClass;
1669 }
else if ((ptrClass != actualClass) && !actualClass->
InheritsFrom(ptrClass)) {
1670 Error(
"Branch",
"The actual class (%s) of the object provided for the definition of the branch \"%s\" does not inherit from %s", actualClass->
GetName(), branchname, ptrClass->
GetName());
1674 Error(
"Branch", writeStlWithoutProxyMsg,
1689 Error(
"Branch",
"The pointer specified for %s is not of a class or type known to ROOT", branchname);
1692 return Branch(branchname,addobj,varname.
Data(),bufsize);
1698 Error(
"Branch",
"Reference interface requires a valid object (for branch: %s)!", branchname);
1703 Warning(
"Branch",
"The actual TClass corresponding to the object provided for the definition of the branch \"%s\" is missing.\n\tThe object will be truncated down to its %s part",
1704 branchname, ptrClass->
GetName());
1705 actualClass = ptrClass;
1706 }
else if ((ptrClass != actualClass) && !actualClass->
InheritsFrom(ptrClass)) {
1707 Error(
"Branch",
"The actual class (%s) of the object provided for the definition of the branch \"%s\" does not inherit from %s", actualClass->
GetName(), branchname, ptrClass->
GetName());
1711 Error(
"Branch", writeStlWithoutProxyMsg,
1726 "The inner type of the std::array passed specified for %s is not of a class or type known to ROOT",
1731 return Branch(branchname, addobj, varname.
Data(), bufsize);
1832 Error(
"Branch",
"Cannot call this constructor for a TClonesArray");
1838 while ((obj = next())) {
1846 Branch(col, bufsize, splitlevel - 1, branchname);
1848 if (nch && (
name[nch-1] ==
'_')) {
1857 if (splitlevel > 99) {
1876 if (ob->IsA() != TFolder::Class()) {
1883 char* curname =
new char[1000];
1885 while ((obj = next())) {
1887 if (obj->IsA() == TFolder::Class()) {
1888 Branch(curname, bufsize, splitlevel - 1);
1891 for (
Int_t i = 0; i < 1000; ++i) {
1892 if (curname[i] == 0) {
1895 if (curname[i] ==
'/') {
1902 strlcat(curname, occur,1000);
2013 return Bronch(
name, classname, addobj, bufsize, splitlevel);
2015 if (splitlevel < 0) {
2018 return BranchOld(
name, classname, addobj, bufsize, splitlevel);
2067 Error(
"BranchOld",
"Cannot find class: '%s'", classname);
2072 Fatal(
"BranchOld",
"The requested class ('%s') does not inherit from TObject.\n"
2073 "\tfgBranchStyle is set to zero requesting by default to use BranchOld.\n"
2074 "\tIf this is intentional use Bronch instead of Branch or BranchOld.", classname);
2076 Fatal(
"BranchOld",
"The requested class ('%s') does not inherit from TObject.\n"
2077 "\tYou can not use BranchOld to store objects of this type.",classname);
2088 const char* rdname = 0;
2089 const char* dname = 0;
2091 char** apointer = (
char**) addobj;
2103 if (
name[lenName-1] ==
'.') {
2142 if (!strcmp(dname,
"fBits")) {
2145 if (!strcmp(dname,
"fUniqueID")) {
2155 branchname = rdname;
2159 branchname.
Form(
"%s%s",
name, &rdname[1]);
2161 branchname.
Form(
"%s%s",
name, &rdname[0]);
2167 char* pointer = ((
char*) obj) + offset;
2174 if (clobj && clobj->
InheritsFrom(TClonesArray::Class())) {
2176 char* cpointer = (
char*) pointer;
2177 char** ppointer = (
char**) cpointer;
2179 if (splitlevel != 2) {
2181 branch1 =
new TBranchClones(branch,branchname, pointer, bufsize);
2186 blist->
Add(branch1);
2194 blist->
Add(branch1);
2211 blist->
Add(branch1);
2232 if (!strcmp(rdi->
GetName(), index)) {
2235 if (!strcmp(rdi->
GetName(), aindex)) {
2247 leaflist.
Form(
"%s[%s]/%c", &rdname[0], index, vcode);
2249 Error(
"BranchOld",
"Cannot create branch for rdname: %s code: %d", branchname.
Data(), code);
2256 leaflist.
Form(
"%s/%s", dname,
"C");
2269 branch1 =
new TBranch(branch, bname, *((
void**) pointer), leaflist, bufsize);
2273 blist->
Add(branch1);
2280 leaflist.
Form(
"%s/%c", rdname, vcode);
2282 Error(
"BranchOld",
"Cannot create branch for rdname: %s code: %d", branchname.
Data(), code);
2285 branch1 =
new TBranch(branch, branchname, pointer, leaflist, bufsize);
2287 blist->
Add(branch1);
2296 Warning(
"BranchOld",
"Cannot process member: '%s'", rdname);
2405 Error(
"Bronch",
"Cannot find class:%s", classname);
2416 objptr = (
char*)addr;
2418 objptr = *((
char**) addr);
2421 if (cl == TClonesArray::Class()) {
2424 Error(
"Bronch",
"Pointer to TClonesArray is null");
2428 Error(
"Bronch",
"TClonesArray with no class defined in branch: %s",
name);
2432 Error(
"Bronch",
"TClonesArray with no dictionary defined in branch: %s",
name);
2436 if (splitlevel > 0) {
2437 if (hasCustomStreamer)
2438 Warning(
"Bronch",
"Using split mode on a class: %s with a custom Streamer", clones->
GetClass()->
GetName());
2453 if (!inklass && (collProxy->
GetType() == 0)) {
2454 Error(
"Bronch",
"%s with no class defined in branch: %s", classname,
name);
2461 Error(
"Bronch",
"Container with no dictionary defined in branch: %s",
name);
2465 Warning(
"Bronch",
"Using split mode on a class: %s with a custom Streamer", inklass->
GetName());
2476 branch =
new TBranchSTL(
this,
name, collProxy, bufsize, splitlevel );
2490 Error(
"Bronch",
"Cannot find dictionary for class: %s", classname);
2496 hasCustomStreamer =
kTRUE;
2499 if (splitlevel < 0 || ((splitlevel == 0) && hasCustomStreamer && cl->
IsTObject())) {
2505 if (cl == TClonesArray::Class()) {
2530 objptr = (
char*) cl->
New();
2538 if ((splitlevel > 0) && !cl->
CanSplit()) {
2539 if (splitlevel != 99) {
2540 Warning(
"Bronch",
"%s cannot be split, resetting splitlevel to 0", cl->
GetName());
2554 Error(
"Bronch",
"Cannot build the StreamerInfo for class: %s", cl->
GetName());
2563 if (splitlevel > 0) {
2574 branch->
Unroll(
name, cl, sinfo, objptr, bufsize, splitlevel);
2743 constexpr auto kBufSize = 2000;
2744 char* fname =
new char[kBufSize];
2747 for (
Int_t i = 0; i < 10; ++i) {
2755 strlcpy(fname,
file->GetName(), kBufSize);
2758 char* cunder = strrchr(fname,
'_');
2761 const char* cdot = strrchr(
file->GetName(),
'.');
2763 strlcat(fname, cdot, kBufSize);
2768 strlcat(fname, fcount, kBufSize);
2771 char* cdot = strrchr(fname,
'.');
2774 strlcat(fname, strrchr(
file->GetName(),
'.'), kBufSize);
2778 strlcat(fname, fcount, kBufSize);
2785 Warning(
"ChangeFile",
"file %s already exist, trying with %d underscores", fname, nus+1);
2787 Int_t compress =
file->GetCompressionSettings();
2790 Error(
"Fill",
"Failed to open new file %s, continuing as a memory tree.",fname);
2792 Printf(
"Fill: Switching to new file: %s", fname);
2798 while ((obj =
file->GetList()->First())) {
2815 while ((branch = (
TBranch*)nextb())) {
2824 if (newfile) newfile->
Append(obj);
2827 file->TObject::Delete();
2864 TClass* expectedClass = 0;
2870 bool isBranchElement = branch->
InheritsFrom( TBranchElement::Class() );
2871 if (expectedClass && datatype ==
kOther_t && ptrClass == 0) {
2872 if (isBranchElement) {
2877 Error(
"SetBranchAddress",
"Unable to determine the type given for the address for \"%s\". "
2878 "The class expected (%s) refers to an stl collection and do not have a compiled CollectionProxy. "
2879 "Please generate the dictionary for this class (%s)",
2886 Error(
"SetBranchAddress",
"Unable to determine the type given for the address for \"%s\". "
2887 "The class expected (%s) does not have a dictionary and needs to be emulated for I/O purposes but is being passed a compiled object."
2888 "Please generate the dictionary for this class (%s)",
2891 Error(
"SetBranchAddress",
"Unable to determine the type given for the address for \"%s\". "
2892 "This is probably due to a missing dictionary, the original data class for this branch is %s.", branch->
GetName(), expectedClass->
GetName());
2896 if (expectedClass && ptrClass && (branch->
GetMother() == branch)) {
2899 Error(
"SetBranchAddress",
"The address for \"%s\" should be the address of a pointer!", branch->
GetName());
2919 if( expectedClass && ptrClass &&
2920 expectedClass != ptrClass &&
2928 Info(
"SetBranchAddress",
"Matching STL collection (at least according to the SchemaRuleSet when "
2929 "reading a %s into a %s",expectedClass->
GetName(),ptrClass->
GetName());
2936 Error(
"SetBranchAddress",
"The pointer type given \"%s\" does not correspond to the type needed \"%s\" by the branch: %s", ptrClass->
GetName(), bEl->
GetClassName(), branch->
GetName());
2947 }
else if (expectedClass && ptrClass && !expectedClass->
InheritsFrom(ptrClass)) {
2969 Error(
"SetBranchAddress",
"The pointer type given (%s) does not correspond to the class needed (%s) by the branch: %s", ptrClass->
GetName(), expectedClass->
GetName(), branch->
GetName());
2970 if (isBranchElement) {
2979 Error(
"SetBranchAddress",
"The pointer type given \"%s\" (%d) does not correspond to the type needed \"%s\" (%d) by the branch: %s",
2986 if (expectedClass) {
2987 Error(
"SetBranchAddress",
"The pointer type given \"%s\" (%d) does not correspond to the type needed \"%s\" by the branch: %s",
2989 if (isBranchElement) {
3005 if (etype == expectedType) {
3020 if (etype == expectedType) {
3032 if (len <= ptrClass->Size()) {
3036 Error(
"SetBranchAddress",
"The pointer type given \"%s\" does not correspond to the type needed \"%s\" (%d) by the branch: %s",
3042 Error(
"SetBranchAddress", writeStlWithoutProxyMsg,
3044 if (isBranchElement) {
3050 if (isBranchElement) {
3051 if (expectedClass) {
3160 for (
Int_t i = 0; i < nb; ++i) {
3170 if (thistree !=
this) {
3195 for (
Int_t lndx = 0; lndx < nleaves; ++lndx) {
3201 if (branch && (newcomp > -1)) {
3210 for (
Long64_t i = 0; i < nb; ++i) {
3221 for (
Int_t j = 0; j < nb1; ++j) {
3235 for (
Int_t k = 0; k < nb2; ++k) {
3267 Error(
"CloneTTree",
"TTree has not been cloned\n");
3290 for (
Int_t i = 0; i < nbranches; ++i) {
3297 tree->ResetBranchAddress(br);
3301 if (branch->IsA() == TBranch::Class()) {
3326 Warning(
"CopyAddresses",
"Could not find branch named '%s' in tree named '%s'", branch->
GetName(),
tree->GetName());
3334 std::set<TLeaf*> updatedLeafCount;
3335 for (
Int_t i = 0; i < ntleaves; ++i) {
3351 tree->ResetBranchAddress(tbranch);
3354 bool needAddressReset =
false;
3362 needAddressReset =
true;
3364 needAddressReset = (updatedLeafCount.find(leaf->
GetLeafCount()) != updatedLeafCount.end());
3368 if (leaf->IsA() == TLeafElement::Class() && mother)
3387 if (br->IsA() != branch->IsA()) {
3390 "Branch kind mismatch between input tree '%s' and output tree '%s' for branch '%s': '%s' vs '%s'",
3400 Warning(
"CopyAddresses",
"Could not find branch named '%s' in tree named '%s'", branch->
GetName(),
tree->GetName());
3409 (
tree->IsA()->InheritsFrom(
"TNtuple") ||
tree->IsA()->InheritsFrom(
"TNtupleD") )
3411 tree->ResetBranchAddresses();
3417 enum EOnIndexError { kDrop, kKeep, kBuild };
3419 static Bool_t R__HandleIndex(EOnIndexError onIndexError,
TTree *newtree,
TTree *oldtree)
3427 switch (onIndexError) {
3451 switch (onIndexError) {
3475 }
else if ( onIndexError == kDrop ) {
3530 EOnIndexError onIndexError;
3532 onIndexError = kKeep;
3533 }
else if (opt.
Contains(
"buildindex")) {
3534 onIndexError = kBuild;
3535 }
else if (opt.
Contains(
"dropindex")) {
3536 onIndexError = kDrop;
3538 onIndexError = kBuild;
3541 Int_t cacheSize = -1;
3544 Ssiz_t cacheSizeEnd = opt.
Index(
" ",cacheSizeLoc+10) - (cacheSizeLoc+10);
3545 TSubString cacheSizeStr( opt(cacheSizeLoc+10,cacheSizeEnd) );
3548 Warning(
"CopyEntries",
"The cachesize option can not be parsed: %s. The default size will be used.",cacheSizeStr.
String().
Data());
3551 const char *munit =
nullptr;
3554 Warning(
"CopyEntries",
"The cachesize option is too large: %s (%g%s max). The default size will be used.",cacheSizeStr.
String().
Data(),
m,munit);
3557 if (
gDebug > 0 && cacheSize != -1)
Info(
"CopyEntries",
"Using Cache size: %d\n",cacheSize);
3563 }
else if (
nentries > treeEntries) {
3567 if (fastClone && (nentries < 0 || nentries == tree->
GetEntriesFast())) {
3571 if (
tree->LoadTree(i) < 0) {
3575 withIndex = R__HandleIndex( onIndexError,
this,
tree );
3600 if (needCopyAddresses) {
3606 for (
Long64_t ii = 0; ii < tentries; ii++) {
3607 if (localtree->
GetEntry(ii) <= 0) {
3612 if (needCopyAddresses)
3613 tree->ResetBranchAddresses();
3619 if (
tree->GetDirectory() &&
tree->GetDirectory()->GetFile()) {
3620 Warning(
"CopyEntries",
"Skipped file %s\n",
tree->GetDirectory()->GetFile()->GetName());
3622 Warning(
"CopyEntries",
"Skipped file number %d\n",
tree->GetTreeNumber());
3636 }
else if (
nentries > treeEntries) {
3639 if (needCopyAddresses) {
3645 Int_t treenumber = -1;
3647 if (
tree->LoadTree(i) < 0) {
3650 if (treenumber !=
tree->GetTreeNumber()) {
3652 withIndex = R__HandleIndex( onIndexError,
this,
tree );
3654 treenumber =
tree->GetTreeNumber();
3656 if (
tree->GetEntry(i) <= 0) {
3659 nbytes += this->
Fill();
3661 if (needCopyAddresses)
3662 tree->ResetBranchAddresses();
3738 if (
file && !strcmp(option,
"all")) {
3739 if (!
file->IsWritable()) {
3740 Error(
"Delete",
"File : %s is not writable, cannot delete Tree:%s",
file->GetName(),
GetName());
3757 Int_t nbytes,objlen,keylen;
3758 while ((leaf = (
TLeaf*)next())) {
3761 for (
Int_t i=0;i<nbaskets;i++) {
3765 if (!branchFile)
continue;
3767 if (nbytes <= 0)
continue;
3768 branchFile->
MakeFree(pos,pos+nbytes-1);
3782 if (dirsav) dirsav->
cd();
3783 if (
gDebug)
Info(
"TTree::Delete",
"Deleting Tree: %s: %d baskets deleted. Total space freed = %d bytes\n",
GetName(),nbask,ntot);
4509 for (
Int_t i = 0; i < nb; ++i) {
4523 for (
Int_t i = 0; i < nleaves; ++i) {
4527 for (
Int_t j = 0; j < nbaskets - 1; ++j) {
4616 for (
Int_t i = 0; i < nbranches; ++i) {
4624 nwrite = branch->
FillImpl(
nullptr);
4626 nwrite = branch->
FillImpl(useIMT ? &imtHelper :
nullptr);
4630 Error(
"Fill",
"Failed filling branch:%s.%s, nbytes=%d, entry=%lld\n"
4631 " This error is symptomatic of a Tree created as a memory-resident Tree\n"
4632 " Instead of doing:\n"
4633 " TTree *T = new TTree(...)\n"
4634 " TFile *f = new TFile(...)\n"
4636 " TFile *f = new TFile(...)\n"
4637 " TTree *T = new TTree(...)\n\n",
4640 Error(
"Fill",
"Failed filling branch:%s.%s, nbytes=%d, entry=%lld",
GetName(), branch->
GetName(), nwrite,
4672 bool autoFlush =
false;
4673 bool autoSave =
false;
4691 if (autoFlush || autoSave) {
4702 Info(
"TTree::Fill",
"OptimizeBaskets called at entry %lld, fZipBytes=%lld, fFlushedBytes=%lld\n",
4714 if (zipBytes != 0) {
4716 }
else if (totBytes != 0) {
4720 TTree::Class()->WriteBuffer(
b, (
TTree *)
this);
4751 Info(
"TTree::Fill",
"FlushBaskets() called at entry %lld, fZipBytes=%lld, fFlushedBytes=%lld\n",
fEntries,
4759 Info(
"TTree::Fill",
"AutoSave called at entry %lld, fZipBytes=%lld, fSavedBytes=%lld\n",
fEntries,
4774 return nerror == 0 ? nbytes : -1;
4782 if (list==0 || branchname == 0 || branchname[0] ==
'\0')
return 0;
4786 UInt_t brlen = strlen(branchname);
4788 for(
Int_t index = 0; index < nbranches; ++index) {
4793 if (len &&
name[len-1]==
']') {
4794 const char *dim = strchr(
name,
'[');
4799 if (brlen == len && strncmp(branchname,
name,len)==0) {
4803 if ((brlen >= len) && (branchname[len] ==
'.')
4804 && strncmp(
name, branchname, len) == 0) {
4811 if (next)
return next;
4813 const char *dot = strchr((
char*)branchname,
'.');
4815 if (len==(
size_t)(dot-branchname) &&
4816 strncmp(branchname,
name,dot-branchname)==0 ) {
4844 if (branch)
return branch;
4848 if (branch)
return branch;
4852 while ((branch = (
TBranch*) next())) {
4855 return nestedbranch;
4872 const char *subbranch = strstr(branchname, fe->
GetName());
4873 if (subbranch != branchname) {
4877 subbranch += strlen(fe->
GetName());
4878 if (*subbranch !=
'.') {
4884 std::ostringstream
name;
4911 char* subsearchname = (
char*) strstr(searchname,
GetName());
4912 if (subsearchname != searchname) {
4915 if (subsearchname) {
4916 subsearchname += strlen(
GetName());
4917 if (*subsearchname !=
'.') {
4921 if (subsearchname[0]==0) {
4932 const bool searchnameHasDot = strchr(searchname,
'.') !=
nullptr;
4937 while ((leaf = (
TLeaf*) next())) {
4940 if (dim >= 0) leafname.
Remove(dim);
4942 if (leafname == searchname) {
4945 if (subsearchname && leafname == subsearchname) {
4951 dim = leaftitle.
First(
'[');
4952 if (dim >= 0) leaftitle.
Remove(dim);
4954 if (leaftitle == searchname) {
4957 if (subsearchname && leaftitle == subsearchname) {
4960 if (!searchnameHasDot)
4965 dim = longname.
First(
'[');
4966 if (dim>=0) longname.
Remove(dim);
4967 if (longname == searchname) {
4970 if (subsearchname && longname == subsearchname) {
4974 dim = longtitle.
First(
'[');
4975 if (dim>=0) longtitle.
Remove(dim);
4976 if (longtitle == searchname) {
4979 if (subsearchname && longtitle == subsearchname) {
4987 if (strstr(searchname,
".") && !strcmp(searchname, branch->
GetName())) {
4990 if (subsearchname && strstr(subsearchname,
".") && !strcmp(subsearchname, branch->
GetName())) {
5008 subsearchname = (
char*) strstr(searchname, fe->
GetName());
5009 if (subsearchname != searchname) {
5012 if (subsearchname) {
5013 subsearchname += strlen(fe->
GetName());
5014 if (*subsearchname !=
'.') {
5020 if (subsearchname) {
5021 leafname.
Form(
"%s.%s",t->
GetName(),subsearchname);
5023 leafname = searchname;
5065 return fPlayer->
Fit(funcname, varexp, selection, option, goption,
nentries, firstentry);
5071struct BoolRAIIToggle {
5074 BoolRAIIToggle(
Bool_t &val) : m_val(val) { m_val =
true; }
5075 ~BoolRAIIToggle() { m_val =
false; }
5114 if (retval == -1)
return retval;
5149 std::atomic<Int_t> nerrpar(0);
5150 std::atomic<Int_t> nbpar(0);
5151 std::atomic<Int_t> pos(0);
5153 auto mapFunction = [&]() {
5159 Int_t j = pos.fetch_add(1);
5165 std::stringstream ss;
5166 ss << std::this_thread::get_id();
5167 Info(
"FlushBaskets",
"[IMT] Thread %s", ss.str().c_str());
5168 Info(
"FlushBaskets",
"[IMT] Running task for branch #%d: %s", j, branch->GetName());
5171 Int_t nbtask = branch->FlushBaskets();
5173 if (nbtask < 0) { nerrpar++; }
5174 else { nbpar += nbtask; }
5178 pool.
Foreach(mapFunction, nb);
5184 return nerrpar ? -1 : nbpar.load();
5187 for (
Int_t j = 0; j < nb; j++) {
5230 const char* alias = t->
GetAlias(aliasName);
5234 const char* subAliasName = strstr(aliasName, fe->
GetName());
5235 if (subAliasName && (subAliasName[strlen(fe->
GetName())] ==
'.')) {
5255 for (
Int_t i = 0; i < nb; i++) {
5259 if (!strcmp(
b->GetName(),
name)) {
5262 if (!strcmp(
b->GetFullName(),
name)) {
5266 result = R__GetBranch(*(
b->GetListOfBranches()),
name);
5278 if (
name == 0)
return 0;
5300 for (
Int_t i = 0; i < nleaves; i++) {
5337 char* subname = (
char*) strstr(
name, fe->
GetName());
5338 if (subname !=
name) {
5343 if (*subname !=
'.') {
5390 auto calculateCacheSize = [=](
Double_t cacheFactor)
5397 if (medianClusterSize > 0)
5400 cacheSize =
Long64_t(cacheFactor * 1.5 * 30000000);
5404 if (cacheSize >= (INT_MAX / 4)) {
5405 cacheSize = INT_MAX / 4;
5412 if (!(stcs =
gSystem->
Getenv(
"ROOT_TTREECACHE_SIZE")) || !*stcs) {
5418 if (cacheFactor < 0.0) {
5423 Long64_t cacheSize = calculateCacheSize(cacheFactor);
5425 if (cacheSize < 0) {
5429 if (cacheSize == 0 && withDefault) {
5430 cacheSize = calculateCacheSize(1.0);
5626 if (entry < 0 || entry >=
fEntries)
return 0;
5638 auto seqprocessing = [&]() {
5640 for (i=0;i<nbranches;i++) {
5642 nb = branch->
GetEntry(entry, getall);
5655 nb = branch->GetEntry(entry, getall);
5659 if (nb < 0)
return nb;
5665 std::atomic<Int_t> pos(0);
5666 std::atomic<Int_t> nbpar(0);
5668 auto mapFunction = [&]() {
5674 Int_t j = pos.fetch_add(1);
5680 std::stringstream ss;
5681 ss << std::this_thread::get_id();
5682 Info(
"GetEntry",
"[IMT] Thread %s", ss.str().c_str());
5683 Info(
"GetEntry",
"[IMT] Running task for branch #%d: %s", j, branch->GetName());
5686 std::chrono::time_point<std::chrono::system_clock> start, end;
5688 start = std::chrono::system_clock::now();
5689 nbtask = branch->GetEntry(entry, getall);
5690 end = std::chrono::system_clock::now();
5692 Long64_t tasktime = (
Long64_t)std::chrono::duration_cast<std::chrono::microseconds>(end - start).count();
5695 if (nbtask < 0) errnb = nbtask;
5696 else nbpar += nbtask;
5722 if (nb < 0)
return nb;
5739 if (nb < 0)
return nb;
5774 if (checkLeafCount) {
5775 for (
Int_t i = 0; i < nbranches; i++) {
5779 auto countBranch = leafCount->GetBranch();
5789 if (!checkLeafCount) {
5792 for (
Int_t i = 0; i < nbranches; i++) {
5804 [](std::pair<Long64_t,TBranch*>
a, std::pair<Long64_t,TBranch*>
b) {
5805 return a.first > b.first;
5824 [](std::pair<Long64_t,TBranch*>
a, std::pair<Long64_t,TBranch*>
b) {
5825 return a.first > b.first;
5930 for (i = 0; i < nbranches; ++i) {
5933 if (nb < 0)
return nb;
5945 if (serial <0)
return -nbytes;
5947 if (nb < 0)
return nb;
5972 if (strcmp(friendname,fe->
GetName())==0
6086 leaf = branch->
GetLeaf(leafname);
6093 while ((leaf = (
TLeaf*)nextl())) {
6094 if (strcmp(leaf->
GetFullName(), leafname) != 0 && strcmp(leaf->
GetName(), leafname) != 0)
6102 UInt_t nbch = strlen(branchname);
6103 const char* brname = br->
GetName();
6105 if (strncmp(brname,branchname,nbch)) {
6107 const char *mothername = mother->
GetName();
6108 UInt_t motherlen = strlen(mothername);
6109 if (!strcmp(mothername, branchname)) {
6111 }
else if (nbch > motherlen && strncmp(mothername,branchname,motherlen)==0 && (mothername[motherlen-1]==
'.' || branchname[motherlen]==
'.')) {
6113 if (strncmp(brname,branchname+motherlen+1,nbch-motherlen-1)) {
6129 if ((strlen(brname) > nbch) && (brname[nbch] !=
'.') && (brname[nbch] !=
'[')) {
6142 leaf = t->
GetLeaf(branchname, leafname);
6143 if (leaf)
return leaf;
6154 char *subname = (
char*)strstr(leafname,fe->
GetName());
6155 if (subname != leafname)
continue;
6158 if (*subname !=
'.')
continue;
6160 strippedArg += subname;
6161 leaf = t->
GetLeaf(branchname,subname);
6162 if (leaf)
return leaf;
6179 if (leafname == 0)
return 0;
6204 std::string path(
name);
6205 const auto sep = path.find_last_of(
"/");
6206 if (sep != std::string::npos)
6232 if (entryNumber < 0)
break;
6272 if (entryNumber < 0)
break;
6316 if (create && !pe) {
6389 if (autoflush > 0 && autosave > 0) {
6401 for (
Int_t i = 0; i < nb; ++i) {
6408 for(
Int_t i = 0, j = 0; j < oldsize; ++j) {
6439 Int_t nimported = 0;
6440 while ((leaf=(
TLeaf*)next())) {
6497 friendHasEntry =
kTRUE;
6624 Warning(
"MakeCode",
"MakeCode is obsolete. Use MakeClass or MakeSelector instead");
6750Int_t TTree::MakeProxy(
const char* proxyClassname,
const char* macrofilename,
const char* cutfilename,
const char* option,
Int_t maxUnrolling)
6754 return fPlayer->
MakeProxy(proxyClassname,macrofilename,cutfilename,option,maxUnrolling);
6840 while ((obj=next())) {
6846 newtree = (
TTree*)
tree->CloneTree(-1, options);
6847 if (!newtree)
continue;
6853 tree->GetListOfClones()->Remove(newtree);
6854 tree->ResetBranchAddresses();
6884 if (
tree==
this)
continue;
6885 if (!
tree->InheritsFrom(TTree::Class())) {
6886 Error(
"Add",
"Attempt to add object of class: %s to a %s",
tree->ClassName(),
ClassName());
6911 const char *options = info ? info->
fOptions.
Data() :
"";
6947 if (
tree==
this)
continue;
6948 if (!
tree->InheritsFrom(TTree::Class())) {
6949 Error(
"Add",
"Attempt to add object of class: %s to a %s",
tree->ClassName(),
ClassName());
6969 if (src == dst)
return;
6996 if (!newdirectory) {
7007 return cloner.
Exec();
7019 while ((leaf = (
TLeaf*) next())) {
7051 if (nleaves == 0 || treeSize == 0) {
7055 Double_t aveSize = treeSize/nleaves;
7059 Int_t i, oldMemsize,newMemsize,oldBaskets,newBaskets;
7060 i = oldMemsize = newMemsize = oldBaskets = newBaskets = 0;
7065 for (
Int_t pass =0;pass<2;pass++) {
7070 for (i=0;i<nleaves;i++) {
7074 Double_t idealFactor = totBytes/aveSize;
7078 sizeOfOneEntry = aveSize;
7083 oldMemsize += oldBsize;
7084 oldBaskets += 1+
Int_t(totBytes/oldBsize);
7087 newBaskets += 1+
Int_t(totBytes/oldBsize);
7090 Double_t bsize = oldBsize*idealFactor*memFactor;
7091 if (bsize < 0) bsize = bmax;
7092 if (bsize > bmax) bsize = bmax;
7101 newBsize = newBsize + (clusterSize *
sizeof(
Int_t) * 2);
7110 newBsize = newBsize - newBsize%512 + 512;
7112 if (newBsize < sizeOfOneEntry) newBsize = sizeOfOneEntry;
7113 if (newBsize < bmin) newBsize = bmin;
7114 if (newBsize > 10000000) newBsize = bmax;
7116 if (pDebug)
Info(
"OptimizeBaskets",
"Changing buffer size from %6d to %6d bytes for %s\n",oldBsize,newBsize,branch->
GetName());
7119 newMemsize += newBsize;
7123 newBaskets += 1+
Int_t(totBytes/newBsize);
7124 if (pass == 0)
continue;
7128 if (comp > 1 && comp < minComp) {
7129 if (pDebug)
Info(
"OptimizeBaskets",
"Disabling compression for branch : %s\n",branch->
GetName());
7135 if (memFactor > 100) memFactor = 100;
7136 Double_t bmin_new = bmin*memFactor;
7137 Double_t bmax_new = bmax*memFactor;
7138 static const UInt_t hardmax = 1*1024*1024*1024;
7145 static const UInt_t hardmin = 8;
7146 bmin = (bmin_new > hardmax) ? hardmax : ( bmin_new < hardmin ? hardmin : (
UInt_t)bmin_new );
7147 bmax = (bmax_new > hardmax) ? bmin : (
UInt_t)bmax_new;
7150 Info(
"OptimizeBaskets",
"oldMemsize = %d, newMemsize = %d\n",oldMemsize, newMemsize);
7151 Info(
"OptimizeBaskets",
"oldBaskets = %d, newBaskets = %d\n",oldBaskets, newBaskets);
7223 TTree::Class()->WriteBuffer(
b, (
TTree*)
this);
7230 Printf(
"******************************************************************************");
7233 Printf(
"* : : Tree compression factor = %6.2f *", cx);
7234 Printf(
"******************************************************************************");
7237 if (option ==
nullptr)
7240 if (strncmp(option,
"clusters",strlen(
"clusters"))==0) {
7241 Printf(
"%-16s %-16s %-16s %8s %20s",
7242 "Cluster Range #",
"Entry Start",
"Last Entry",
"Size",
"Number of clusters");
7246 bool estimated =
false;
7247 bool unknown =
false;
7250 if (recordedSize > 0) {
7251 nclusters = (1 + end - start) / recordedSize;
7252 Printf(
"%-16d %-16lld %-16lld %8lld %10lld",
7253 ind, start, end, recordedSize, nclusters);
7259 if (estimated_size > 0) {
7260 nclusters = (1 + end - start) / estimated_size;
7261 Printf(
"%-16d %-16lld %-16lld %8lld %10lld (estimated)",
7262 ind, start, end, recordedSize, nclusters);
7265 Printf(
"%-16d %-16lld %-16lld %8lld (unknown)",
7266 ind, start, end, recordedSize);
7271 totalClusters += nclusters;
7281 Printf(
"Total number of clusters: (unknown)");
7283 Printf(
"Total number of clusters: %lld %s", totalClusters, estimated ?
"(estimated)" :
"");
7292 if (strstr(option,
"toponly")) {
7295 for (
l=0;
l<nl;
l++) {
7298 if (strchr(br->
GetName(),
'.')) {
7306 for (
l=0;
l<nl;
l++) {
7307 if (count[
l] < 0)
continue;
7315 if (strlen(option) && strchr(option,
'*')) reg = option;
7319 while ((br= (
TBranch*)next())) {
7331 if (!
fFriends || !strstr(option,
"all"))
return;
7337 if (t) t->
Print(option);
7357 if (tc) tc->
Print(option);
7483 var.
Form(
"%s>>%s", varexp, hname);
7486 opt.
Form(
"%sgoff", option);
7551 Error(
"ReadFile",
"Cannot open file: %s",filename);
7554 const char* ext = strrchr(filename,
'.');
7555 if(ext != NULL && ((strcmp(ext,
".csv") == 0) || (strcmp(ext,
".CSV") == 0)) && delimiter ==
' ') {
7558 return ReadStream(in, branchDescriptor, delimiter);
7567 Long_t inPos = inputStream.tellg();
7568 char newline =
'\n';
7572 if(!inputStream.good()) {
7573 Error(
"ReadStream",
"Error reading stream: no newline found.");
7576 if(
c == newline)
break;
7582 inputStream.clear();
7583 inputStream.seekg(inPos);
7595 std::stringstream ss;
7596 std::istream *inTemp;
7597 Long_t inPos = inputStream.tellg();
7598 if (!inputStream.good()) {
7599 Error(
"ReadStream",
"Error reading stream");
7603 ss << std::cin.rdbuf();
7608 inTemp = &inputStream;
7610 std::istream& in = *inTemp;
7615 if (nbranches == 0) {
7616 char *bdname =
new char[4000];
7617 char *bd =
new char[100000];
7619 if (branchDescriptor) nch = strlen(branchDescriptor);
7623 in.getline(bd, 100000, newline);
7627 Error(
"ReadStream",
"Error reading stream");
7631 while( isspace(*cursor) && *cursor !=
'\n' && *cursor !=
'\0') {
7634 if (*cursor !=
'#' && *cursor !=
'\n' && *cursor !=
'\0') {
7641 strlcpy(bd,branchDescriptor,100000);
7646 void *address = &bd[90000];
7650 if(delimiter !=
' ') {
7652 if (strchr(bdcur,bdelim)==0 && strchr(bdcur,
':') != 0) {
7658 char *colon = strchr(bdcur,bdelim);
7659 if (colon) *colon = 0;
7660 strlcpy(bdname,bdcur,4000);
7661 char *
slash = strchr(bdname,
'/');
7667 desc.
Form(
"%s/%s",bdname,olddesc.Data());
7669 char *bracket = strchr(bdname,
'[');
7673 branch =
new TBranch(
this,bdname,address,desc.
Data(),32000);
7676 Warning(
"ReadStream",
"Illegal branch definition: %s",bdcur);
7691 Info(
"ReadStream",
"Will use branches:");
7692 for (
int i = 0 ; i < nbranches; ++i) {
7698 Info(
"ReadStream",
"Dumping read tokens, format:");
7699 Info(
"ReadStream",
"LLLLL:BBB:gfbe:GFBE:T");
7700 Info(
"ReadStream",
" L: line number");
7701 Info(
"ReadStream",
" B: branch number");
7702 Info(
"ReadStream",
" gfbe: good / fail / bad / eof of token");
7703 Info(
"ReadStream",
" GFBE: good / fail / bad / eof of file");
7704 Info(
"ReadStream",
" T: Token being read");
7711 const char sDelimBuf[2] = { delimiter, 0 };
7712 const char* sDelim = sDelimBuf;
7713 if (delimiter ==
' ') {
7718 if (newline ==
'\r' && in.peek() ==
'\n') {
7722 std::getline(in,
line, newline);
7729 Info(
"ReadStream",
"Skipping empty line number %lld", nlines);
7733 if (sLine[0] ==
'#') {
7735 Info(
"ReadStream",
"Skipping comment line number %lld: '%s'",
7736 nlines,
line.c_str());
7741 Info(
"ReadStream",
"Parsing line number %lld: '%s'",
7742 nlines,
line.c_str());
7749 std::stringstream sToken;
7753 Int_t remainingLeafLen = 0;
7754 while (goodLine && iBranch < nbranches
7755 && sLine.
Tokenize(tok, pos, sDelim)) {
7757 if (tok.
IsNull() && delimiter ==
' ') {
7763 if (!remainingLeafLen) {
7768 if (!remainingLeafLen) {
7769 remainingLeafLen = leaf->
GetLen();
7773 remainingLeafLen = 1;
7783 if (remainingLeafLen) {
7791 sToken.seekp(0, std::ios_base::beg);
7792 sToken.str(leafData.
Data());
7793 sToken.seekg(0, std::ios_base::beg);
7796 Info(
"ReadStream",
"%5lld:%3d:%d%d%d%d:%d%d%d%d:%s",
7798 (
int)sToken.good(), (
int)sToken.fail(),
7799 (
int)sToken.bad(), (
int)sToken.eof(),
7800 (
int)in.good(), (
int)in.fail(),
7801 (
int)in.bad(), (
int)in.eof(),
7802 sToken.str().c_str());
7809 "Buffer error while reading data for branch %s on line %lld",
7811 }
else if (!sToken.eof()) {
7812 if (sToken.fail()) {
7814 "Couldn't read formatted data in \"%s\" for branch %s on line %lld; ignoring line",
7818 std::string remainder;
7819 std::getline(sToken, remainder, newline);
7820 if (!remainder.empty()) {
7822 "Ignoring trailing \"%s\" while reading data for branch %s on line %lld",
7823 remainder.c_str(), branch->
GetName(), nlines);
7829 if (iBranch < nbranches) {
7831 "Read too few columns (%d < %d) in line %lld; ignoring line",
7832 iBranch, nbranches, nlines);
7834 }
else if (pos !=
kNPOS) {
7836 if (pos < sLine.
Length()) {
7838 "Ignoring trailing \"%s\" while reading line %lld",
7839 sLine.
Data() + pos - 1 ,
7914 for (
Int_t i = 0; i < nleaves; i++) {
7965 if (friend_t == oldFriend) {
7993 for (
Int_t i = 0; i < nb; ++i) {
7995 branch->
Reset(option);
8023 for (
Int_t i = 0; i < nb; ++i) {
8052 for (
Int_t i = 0; i < nbranches; ++i) {
8111 if (!aliasName || !aliasFormula) {
8114 if (!aliasName[0] || !aliasFormula[0]) {
8267 std::vector<Long64_t> clusterSizesPerRange;
8273 [](
Long64_t size) {
return size != 0; });
8275 std::vector<double> nClustersInRange;
8276 nClustersInRange.reserve(clusterSizesPerRange.size());
8278 auto clusterRangeStart = 0ll;
8285 nClustersInRange.emplace_back(nClusters);
8289 R__ASSERT(nClustersInRange.size() == clusterSizesPerRange.size());
8290 const auto medianClusterSize =
8291 TMath::Median(nClustersInRange.size(), clusterSizesPerRange.data(), nClustersInRange.data());
8292 return medianClusterSize;
8328 for (
Int_t i = 0; i < nleaves; i++) {
8339 Error(
"SetBasketSize",
"unknown branch -> '%s'", bname);
8355 Error(
"SetBranchAddress",
"unknown branch -> %s", bname);
8385 Error(
"SetBranchAddress",
"unknown branch -> %s", bname);
8419 const char *bname = branch->
GetName();
8420 while ((clone = (
TTree*) next())) {
8422 if (cloneBr && (cloneBr->
GetAddress() == oldAddr)) {
8507 if (0 == strcmp(bname,
"")) {
8508 Error(
"SetBranchStatus",
"Input regexp is an empty string: no match against branch names will be attempted.");
8512 TBranch *branch, *bcount, *bson;
8513 TLeaf *leaf, *leafcount;
8522 for (i=0;i<nleaves;i++) {
8526 if (strcmp(bname,
"*")) {
8529 if (strcmp(bname,branch->
GetName())
8530 && longname != bname
8543 if (nb==0 && strchr(bname,
'*')==0) {
8553 UInt_t foundInFriend = 0;
8564 char *subbranch = (
char*)strstr(bname,fe->
GetName());
8565 if (subbranch!=bname) subbranch = 0;
8567 subbranch += strlen(fe->
GetName());
8568 if ( *subbranch !=
'.' ) subbranch = 0;
8579 if (!nb && !foundInFriend) {
8582 if (strchr(bname,
'*') != 0)
8583 Error(
"SetBranchStatus",
"No branch name is matching wildcard -> %s", bname);
8585 Error(
"SetBranchStatus",
"unknown branch -> %s", bname);
8587 if (strchr(bname,
'*') != 0)
8588 Warning(
"SetBranchStatus",
"No branch name is matching wildcard -> %s", bname);
8590 Warning(
"SetBranchStatus",
"unknown branch -> %s", bname);
8595 if (found) *found = nb + foundInFriend;
8599 for (i = 0; i < nleaves; i++) {
8611 for (j=0;j<nbranches;j++) {
8613 if (!bson)
continue;
8681 if (cacheSize < 0) {
8685 if (cacheSize == 0) {
8687 }
else if (cacheSize < 0) {
8702 if (!autocache && cacheSize>0) {
8703 Warning(
"SetCacheSizeAux",
"A TTreeCache could not be created because the TTree has no file");
8738 if (cacheSize == 0) {
8741 file->SetCacheRead(0,
this);
8760 Error(
"SetCacheSizeAux",
"Not setting up an automatically sized TTreeCache because of missing cache previously set");
8768 if (cacheSize == 0 || pf) {
8795 Error(
"SetCacheEntryRange",
"Could not load a tree");
8804 Error(
"SetCacheEntryRange",
"No tree is available. Could not set cache entry range");
8810 Error(
"SetCacheEntryRange",
"No file is available. Could not set cache entry range");
8815 Error(
"SetCacheEntryRange",
"No cache is available. Could not set entry range");
8854 if (maxEntries <= 0) {
8869 for (
Int_t i = 0; i < nb; i++) {
8902 if (newdefault < 10) {
8906 if (updateExisting) {
8909 while ( (
b = (
TBranch*)next() ) ) {
8980 TBranch*
b(
nullptr), *bMin(
nullptr), *bMax(
nullptr);
8986 if (!bMin || n2 < nMin) {
8990 if (!bMax || n2 > nMax) {
8995 if (bMin && nMin != nMax) {
8996 Warning(
"SetEntries",
"Tree branches have different numbers of entries, eg %s has %lld entries while %s has %lld entries.",
8997 bMin->GetName(), nMin, bMax->
GetName(), nMax);
9049 char enlistname[100];
9056 for (
Int_t i=0; i<nsel; i++){
9097 UChar_t newFeatures = ~curFeatures & featuresRequested;
9098 curFeatures |= newFeatures;
9116 Warning(
"SetFileNumber",
"file number must be positive. Set to 0");
9142 for (
Int_t i = 0; i < nb; ++i) {
9242 if (pf && !( opt ^ (
nullptr !=
dynamic_cast<TTreeCacheUnzip*
>(pf)))) {
9250 unzip->SetUnzipBufferSize(
Long64_t(cacheSize * RelSize) );
9324 Error(
"Show()",
"Cannot read entry %lld (entry does not exist)", entry);
9326 }
else if (ret == -1) {
9327 Error(
"Show()",
"Cannot read entry %lld (I/O error)", entry);
9332 Error(
"Show()",
"Cannot read entry %lld (I/O error)", entry);
9334 }
else if (ret == 0) {
9335 Error(
"Show()",
"Cannot read entry %lld (no data read)", entry);
9343 for (
Int_t i = 0; i < nleaves; i++) {
9354 if (leaf->IsA() == TLeafElement::Class()) {
9362 if (leaf->IsA() == TLeafF::Class()) {
9365 if (leaf->IsA() == TLeafD::Class()) {
9368 if (leaf->IsA() == TLeafC::Class()) {
9372 printf(
" %-15s = ", leaf->
GetName());
9375 if (
l == (len - 1)) {
9380 if ((
l % ltype) == 0) {
9412 Error(
"StopCacheLearningPhase",
"Could not load a tree");
9421 Error(
"StopCacheLearningPhase",
"No tree is available. Could not stop cache learning phase");
9427 Error(
"StopCacheLearningPhase",
"No file is available. Could not stop cache learning phase");
9432 Error(
"StopCacheLearningPhase",
"No cache is available. Could not stop learning phase");
9445 for (
Int_t i = 0; i < nb; ++i) {
9450 for (
Int_t j = writeBasket; j >= 0; --j) {
9481 if (
b.IsReading()) {
9492 Version_t R__v =
b.ReadVersion(&R__s, &R__c);
9494 b.ReadClassBuffer(TTree::Class(),
this, R__v, R__s, R__c);
9506 Warning(
"Streamer",
"Old style index in this tree is deleted. Rebuild the index via TTree::BuildIndex");
9532 TNamed::Streamer(
b);
9533 TAttLine::Streamer(
b);
9534 TAttFill::Streamer(
b);
9535 TAttMarker::Streamer(
b);
9551 if (R__v > 2)
fIndex.Streamer(
b);
9554 OldInfoList.Streamer(
b);
9560 b.CheckByteCount(R__s, R__c, TTree::IsA());
9569 b.WriteClassBuffer(TTree::Class(),
this);
9689 return ((
const TTree*)
this)->Write(
name, option, bufsize);
9719, fDirection(iter.fDirection)
9728 if (
this != &rhs && rhs.IsA() == TTreeFriendLeafIter::Class()) {
9751 if (!
fTree)
return 0;
9758 if (!list)
return 0;
9767 if (!list)
return next;
9775 if (!nextTree)
return Next();
#define R__unlikely(expr)
unsigned long long ULong64_t
const Int_t kDoNotProcess
void Error(const char *location, const char *msgfmt,...)
Use this function in case an error occurred.
static unsigned int total
R__EXTERN TInterpreter * gCling
R__EXTERN TVirtualMutex * gROOTMutex
void Printf(const char *fmt,...)
R__EXTERN TStyle * gStyle
typedef void((*Func_t)())
R__EXTERN TSystem * gSystem
constexpr Int_t kNEntriesResort
static TBranch * R__FindBranchHelper(TObjArray *list, const char *branchname)
Search in the array for a branch matching the branch name, with the branch possibly expressed as a 'f...
static char DataTypeToChar(EDataType datatype)
void TFriendElement__SetTree(TTree *tree, TList *frlist)
Set the fTree member for all friend elements.
bool CheckReshuffling(TTree &mainTree, TTree &friendTree)
static void TBranch__SetTree(TTree *tree, TObjArray &branches)
Set the fTree member for all branches and sub branches.
constexpr Float_t kNEntriesResortInv
#define R__LOCKGUARD(mutex)
TRangeStaticCast is an adaptater class that allows the typed iteration through a TCollection.
Bool_t HasRuleWithSourceClass(const TString &source) const
Return True if we have any rule whose source class is 'source'.
A helper class for managing IMT work during TTree:Fill operations.
TIOFeatures provides the end-user with the ability to change the IO behavior of data written via a TT...
UChar_t GetFeatures() const
bool Set(EIOFeatures bits)
Set a specific IO feature.
This class provides a simple interface to execute the same task multiple times in parallel threads,...
void Foreach(F func, unsigned nTimes, unsigned nChunks=0)
Execute a function without arguments several times in parallel, dividing the execution in nChunks.
void Set(Int_t n)
Set size of this array to n doubles.
void Set(Int_t n)
Set size of this array to n ints.
Fill Area Attributes class.
virtual Color_t GetFillColor() const
Return the fill area color.
virtual Style_t GetFillStyle() const
Return the fill area style.
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
virtual void SetFillStyle(Style_t fstyle)
Set the fill area style.
virtual Color_t GetLineColor() const
Return the line color.
virtual void SetLineStyle(Style_t lstyle)
Set the line style.
virtual Width_t GetLineWidth() const
Return the line width.
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
virtual void SetLineColor(Color_t lcolor)
Set the line color.
virtual Style_t GetLineStyle() const
Return the line style.
virtual Style_t GetMarkerStyle() const
Return the marker style.
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
virtual Color_t GetMarkerColor() const
Return the marker color.
virtual Size_t GetMarkerSize() const
Return the marker size.
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
Each class (see TClass) has a linked list of its base class(es).
ROOT::ESTLType IsSTLContainer()
Return which type (if any) of STL container the data member is.
Manages buffers for branches of a Tree.
virtual Int_t DropBuffers()
Drop buffers of this basket if it is not the current basket.
Int_t GetBufferSize() const
A Branch for the case of an array of clone objects.
A Branch for the case of an object.
virtual void ResetAddress()
Set branch address to zero and free all allocated memory.
virtual void SetBranchFolder()
virtual const char * GetClassName() const
Return the name of the user class whose content is stored in this branch, if any.
virtual Bool_t IsObjectOwner() const
virtual void SetObject(void *objadd)
Set object this branch is pointing to.
virtual void SetAddress(void *addobj)
Point this branch at an object.
Int_t Unroll(const char *name, TClass *cltop, TClass *cl, char *ptr, Int_t basketsize, Int_t splitlevel, Int_t btype)
Split class cl into sub-branches of this branch.
virtual void SetTargetClass(const char *name)
Set the name of the class of the in-memory object into which the data will loaded.
A Branch for the case of an object.
A branch containing and managing a TRefTable for TRef autoloading.
virtual void ResetAfterMerge(TFileMergeInfo *)
Reset a Branch after a Merge operation (drop data but keep customizations) TRefTable is cleared.
virtual void Reset(Option_t *option="")
virtual void Clear(Option_t *option="")
Clear entries in the TRefTable.
virtual void Print(Option_t *option="") const
Print the TRefTable branch.
A Branch handling STL collection of pointers (vectors, lists, queues, sets and multisets) while stori...
A TTree is a list of TBranches.
virtual TLeaf * GetLeaf(const char *name) const
Return pointer to the 1st Leaf named name in thisBranch.
virtual void SetupAddresses()
If the branch address is not set, we set all addresses starting with the top level parent branch.
virtual void ResetAddress()
Reset the address of the branch.
virtual Long64_t GetBasketSeek(Int_t basket) const
Return address of basket in the file.
virtual char * GetAddress() const
void SetCompressionSettings(Int_t settings=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault)
Set compression settings.
virtual TString GetFullName() const
Return the 'full' name of the branch.
Int_t GetWriteBasket() const
virtual void DropBaskets(Option_t *option="")
Loop on all branch baskets.
TObjArray * GetListOfBranches()
virtual void SetTree(TTree *tree)
virtual void SetEntryOffsetLen(Int_t len, Bool_t updateSubBranches=kFALSE)
Update the default value for the branch's fEntryOffsetLen if and only if it was already non zero (and...
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all leaves of entry and return total number of bytes read.
static void ResetCount()
Static function resetting fgCount.
virtual void SetObject(void *objadd)
Set object this branch is pointing to.
Int_t FlushBaskets()
Flush to disk all the baskets of this branch and any of subbranches.
virtual void SetAddress(void *add)
Set address of this branch.
TObjArray * GetListOfBaskets()
Long64_t GetEntries() const
virtual void UpdateFile()
Refresh the value of fDirectory (i.e.
Int_t GetReadBasket() const
virtual void Print(Option_t *option="") const
Print TBranch parameters.
Int_t GetMaxBaskets() const
virtual TFile * GetFile(Int_t mode=0)
Return pointer to the file where branch buffers reside, returns 0 in case branch buffers reside in th...
virtual void KeepCircular(Long64_t maxEntries)
keep a maximum of fMaxEntries in memory
virtual void ResetAfterMerge(TFileMergeInfo *)
Reset a Branch.
virtual Bool_t GetMakeClass() const
Return whether this branch is in a mode where the object are decomposed or not (Also known as MakeCla...
virtual TBranch * FindBranch(const char *name)
Find the immediate sub-branch with passed name.
virtual Int_t LoadBaskets()
Baskets associated to this branch are forced to be in memory.
void SetIOFeatures(TIOFeatures &features)
Long64_t GetTotBytes(Option_t *option="") const
Return total number of bytes in the branch (excluding current buffer) if option ="*" includes all sub...
virtual Bool_t SetMakeClass(Bool_t decomposeObj=kTRUE)
Set the branch in a mode where the object are decomposed (Also known as MakeClass mode).
virtual void SetFile(TFile *file=0)
Set file where this branch writes/reads its buffers.
virtual void SetOffset(Int_t offset=0)
virtual Int_t GetExpectedType(TClass *&clptr, EDataType &type)
Fill expectedClass and expectedType with information on the data type of the object/values contained ...
virtual Int_t GetBasketSize() const
Long64_t GetZipBytes(Option_t *option="") const
Return total number of zip bytes in the branch if option ="*" includes all sub-branches of this branc...
virtual void SetBasketSize(Int_t buffsize)
Set the basket size The function makes sure that the basket size is greater than fEntryOffsetlen.
virtual void Refresh(TBranch *b)
Refresh this branch using new information in b This function is called by TTree::Refresh.
TObjArray * GetListOfLeaves()
virtual void Reset(Option_t *option="")
Reset a Branch.
TBranch * GetMother() const
Get our top-level parent branch in the tree.
virtual Int_t FillImpl(ROOT::Internal::TBranchIMTHelper *)
Loop on all leaves of this branch to fill Basket buffer.
Int_t GetEntryOffsetLen() const
Using a TBrowser one can browse all ROOT objects.
The concrete implementation of TBuffer for writing/reading to/from a ROOT file or socket.
Buffer base class used for serializing objects.
void Expand(Int_t newsize, Bool_t copy=kTRUE)
Expand (or shrink) the I/O buffer to newsize bytes.
TClass instances represent classes, structs and namespaces in the ROOT type system.
Bool_t CanSplit() const
Return true if the data member of this TClass can be saved separately.
ROOT::ESTLType GetCollectionType() const
Return the 'type' of the STL the TClass is representing.
void * New(ENewType defConstructor=kClassNew, Bool_t quiet=kFALSE) const
Return a pointer to a newly allocated object of this class.
Bool_t HasDataMemberInfo() const
void BuildRealData(void *pointer=0, Bool_t isTransient=kFALSE)
Build a full list of persistent data members.
void Destructor(void *obj, Bool_t dtorOnly=kFALSE)
Explicitly call destructor for object.
const std::type_info * GetTypeInfo() const
TList * GetListOfDataMembers(Bool_t load=kTRUE)
Return list containing the TDataMembers of a class.
TList * GetListOfRealData() const
Bool_t CanIgnoreTObjectStreamer()
const ROOT::Detail::TSchemaRuleSet * GetSchemaRules() const
Return the set of the schema rules if any.
TList * GetListOfBases()
Return list containing the TBaseClass(es) of a class.
Bool_t IsLoaded() const
Return true if the shared library of this class is currently in the a process's memory.
Bool_t IsTObject() const
Return kTRUE is the class inherits from TObject.
TVirtualStreamerInfo * GetStreamerInfo(Int_t version=0, Bool_t isTransient=kFALSE) const
returns a pointer to the TVirtualStreamerInfo object for version If the object does not exist,...
TVirtualCollectionProxy * GetCollectionProxy() const
Return the proxy describing the collection (if any).
TVirtualStreamerInfo * GetConversionStreamerInfo(const char *onfile_classname, Int_t version) const
Return a Conversion StreamerInfo from the class 'classname' for version number 'version' to this clas...
TVirtualStreamerInfo * FindConversionStreamerInfo(const char *onfile_classname, UInt_t checksum) const
Return a Conversion StreamerInfo from the class 'classname' for the layout represented by 'checksum' ...
Version_t GetClassVersion() const
Bool_t InheritsFrom(const char *cl) const
Return kTRUE if this class inherits from a class with name "classname".
TClass * GetActualClass(const void *object) const
Return a pointer the the real class of the object.
@ kHasCustomStreamerMember
static TClass * GetClass(const char *name, Bool_t load=kTRUE, Bool_t silent=kFALSE)
Static method returning pointer to TClass of the specified class name.
An array of clone (identical) objects.
void BypassStreamer(Bool_t bypass=kTRUE)
When the kBypassStreamer bit is set, the automatically generated Streamer can call directly TClass::W...
TClass * GetClass() const
Collection abstract base class.
virtual TObject ** GetObjectRef(const TObject *obj) const =0
virtual TIterator * MakeIterator(Bool_t dir=kIterForward) const =0
virtual const char * GetName() const
Return name of this collection.
void SetName(const char *name)
void Browse(TBrowser *b)
Browse this collection (called by TBrowser).
virtual Int_t GetEntries() const
virtual void SetOwner(Bool_t enable=kTRUE)
Set whether this collection is the owner (enable==true) of its content.
A specialized string object used for TTree selections.
All ROOT classes may have RTTI (run time type identification) support added.
Bool_t IsPersistent() const
Long_t GetOffset() const
Get offset from "this".
Bool_t IsBasic() const
Return true if data member is a basic type, e.g. char, int, long...
Bool_t IsaPointer() const
Return true if data member is a pointer.
TDataType * GetDataType() const
const char * GetTypeName() const
Get type of data member, e,g.: "class TDirectory*" -> "TDirectory".
const char * GetArrayIndex() const
If the data member is pointer and has a valid array size in its comments GetArrayIndex returns a stri...
const char * GetFullTypeName() const
Get full type description of data member, e,g.: "class TDirectory*".
Basic data type descriptor (datatype information is obtained from CINT).
TString GetTypeName()
Get basic type of typedef, e,g.: "class TDirectory*" -> "TDirectory".
void Append(TObject *obj, Bool_t replace=kFALSE) override
Append object to this directory.
Small helper to keep current directory context.
Describe directory structure in memory.
virtual TList * GetList() const
virtual void Append(TObject *obj, Bool_t replace=kFALSE)
Append object to this directory.
virtual Int_t WriteTObject(const TObject *obj, const char *name=nullptr, Option_t *="", Int_t=0)
virtual TFile * GetFile() const
virtual Int_t ReadKeys(Bool_t=kTRUE)
virtual Bool_t IsWritable() const
virtual TKey * GetKey(const char *, Short_t=9999) const
virtual Int_t ReadTObject(TObject *, const char *)
virtual void SaveSelf(Bool_t=kFALSE)
virtual TList * GetListOfKeys() const
void GetObject(const char *namecycle, T *&ptr)
Get an object with proper type checking.
virtual TObject * Remove(TObject *)
Remove an object from the in-memory list.
virtual Bool_t cd(const char *path=nullptr)
Change current directory to "this" directory.
Streamer around an arbitrary STL like container, which implements basic container functionality.
A List of entry numbers in a TTree or TChain.
virtual void SetReapplyCut(Bool_t apply=kFALSE)
virtual void SetTree(const TTree *tree)
If a list for a tree with such name and filename exists, sets it as the current sublist If not,...
virtual TDirectory * GetDirectory() const
virtual void SetDirectory(TDirectory *dir)
Add reference to directory dir. dir can be 0.
virtual Bool_t Enter(Long64_t entry, TTree *tree=0)
Add entry #entry to the list.
virtual Long64_t GetEntry(Int_t index)
Return the number of the entry #index of this TEntryList in the TTree or TChain See also Next().
virtual Int_t GetValue(const char *name, Int_t dflt) const
Returns the integer value for a resource.
A TEventList object is a list of selected events (entries) in a TTree.
virtual Long64_t GetEntry(Int_t index) const
Return value of entry at index in the list.
virtual Int_t GetN() const
virtual Bool_t GetReapplyCut() const
A cache when reading files over the network.
virtual void WaitFinishPrefetch()
virtual Int_t GetBufferSize() const
TIOFeatures * fIOFeatures
TDirectory * fOutputDirectory
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Int_t GetCompressionSettings() const
virtual Long64_t GetEND() const
virtual void Flush()
Synchronize a file's in-memory and on-disk states.
virtual void MakeFree(Long64_t first, Long64_t last)
Mark unused bytes on the file.
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
virtual void SetCacheRead(TFileCacheRead *cache, TObject *tree=0, ECacheAction action=kDisconnect)
Set a pointer to the read cache.
Int_t GetRecordHeader(char *buf, Long64_t first, Int_t maxbytes, Int_t &nbytes, Int_t &objlen, Int_t &keylen)
Read the logical record header starting at a certain postion.
A TFolder object is a collection of objects and folders.
TCollection * GetListOfFolders() const
virtual Int_t Occurence(const TObject *obj) const
Return occurence number of object in the list of objects of this folder.
A TFriendElement TF describes a TTree object TF in a file.
virtual const char * GetTreeName() const
Get the actual TTree name of the friend.
virtual TTree * GetTree()
Return pointer to friend TTree.
virtual TFile * GetFile()
Return pointer to TFile containing this friend TTree.
TTree * fParentTree
! pointer to the parent TTree
virtual Int_t DeleteGlobal(void *obj)=0
Iterator abstract base class.
virtual TObject * Next()=0
virtual Option_t * GetOption() const
Book space in a file, create I/O buffers, to fill them, (un)compress them.
virtual void Delete(Option_t *option="")
Delete an object from the file.
virtual const char * GetClassName() const
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
virtual Double_t GetValue(Int_t i=0) const
virtual void * GetValuePointer() const
virtual Int_t GetLenType() const
virtual void ReadValue(std::istream &, Char_t=' ')
virtual Int_t GetMaximum() const
virtual Int_t GetLen() const
Return the number of effective elements of this leaf, for the current entry.
virtual TLeaf * GetLeafCount() const
If this leaf stores a variable-sized array or a multi-dimensional array whose last dimension has vari...
virtual Bool_t IncludeRange(TLeaf *)
virtual void SetAddress(void *add=0)
TBranch * GetBranch() const
@ kNewValue
Set if we own the value buffer and so must delete it ourselves.
@ kIndirectAddress
Data member is a pointer to an array of basic types.
virtual TString GetFullName() const
Return the full name (including the parent's branch names) of the leaf.
virtual Int_t GetOffset() const
virtual void PrintValue(Int_t i=0) const
virtual void Add(TObject *obj)
virtual TObject * Remove(TObject *obj)
Remove object from the list.
virtual TObject * FindObject(const char *name) const
Find an object in this list using its name.
virtual TObjLink * FirstLink() const
virtual TObject * At(Int_t idx) const
Returns the object at position idx. Returns 0 if idx is out of range.
virtual void RecursiveRemove(TObject *obj)
Remove object from this collection and recursively remove the object from all other objects (and coll...
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
virtual void Clear(Option_t *option="")
Remove all objects from the list.
A TMemFile is like a normal TFile except that it reads and writes only from memory.
The TNamed class is the base class for all named ROOT classes.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
virtual void SetName(const char *name)
Set the name of the TNamed.
virtual const char * GetTitle() const
Returns title of object.
virtual TObject * Clone(const char *newname="") const
Make a clone of an object using the Streamer facility.
virtual const char * GetName() const
Returns name of object.
Int_t GetEntriesFast() const
Int_t GetEntriesUnsafe() const
Return the number of objects in array (i.e.
TObject * Last() const
Return the object in the last filled slot. Returns 0 if no entries.
virtual void Compress()
Remove empty slots from array.
Int_t GetEntries() const
Return the number of objects in array (i.e.
virtual void Clear(Option_t *option="")
Remove all objects from the array.
TObject * UncheckedAt(Int_t i) const
virtual void Delete(Option_t *option="")
Remove all objects from the array AND delete all heap based objects.
virtual TObject * FindObject(const char *name) const
Find an object in this collection using its name.
TIterator * MakeIterator(Bool_t dir=kIterForward) const
Returns an array iterator.
virtual TObject * RemoveAt(Int_t idx)
Remove object at index idx.
TObject * At(Int_t idx) const
Wrapper around a TObject so it can be stored in a TList.
TObject * GetObject() const
Mother of all ROOT objects.
virtual Bool_t Notify()
This method must be overridden to handle object notification.
virtual Int_t Write(const char *name=0, Int_t option=0, Int_t bufsize=0)
Write this object to the current directory.
virtual const char * GetName() const
Returns name of object.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
virtual const char * ClassName() const
Returns name of class to which the object belongs.
virtual void Warning(const char *method, const char *msgfmt,...) const
Issue warning message.
R__ALWAYS_INLINE Bool_t IsZombie() const
@ kOnlyPrepStep
Used to request that the class specific implementation of TObject::Write just prepare the objects to ...
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual void Fatal(const char *method, const char *msgfmt,...) const
Issue fatal error message.
virtual const char * GetTitle() const
Returns title of object.
@ kCanDelete
if object in a list can be deleted
@ kMustCleanup
if object destructor must call RecursiveRemove()
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
Principal Components Analysis (PCA)
The TRealData class manages the effective list of all data members for a given class.
TDataMember * GetDataMember() const
virtual const char * GetName() const
Returns name of object.
Long_t GetThisOffset() const
A TRefTable maintains the association between a referenced object and the parent object supporting th...
static void SetRefTable(TRefTable *table)
Static function setting the current TRefTable.
static TRefTable * GetRefTable()
Static function returning the current TRefTable.
Regular expression class.
A TSelector object is used by the TTree::Draw, TTree::Scan, TTree::Process to navigate in a TTree and...
static void * ReAlloc(void *vp, size_t size)
Reallocate (i.e.
Describe Streamer information for one class version.
void ForceWriteInfo(TFile *file, Bool_t force=kFALSE)
Recursively mark streamer infos for writing to a file.
void ToLower()
Change string to lower-case.
static const Ssiz_t kNPOS
TSubString Strip(EStripType s=kTrailing, char c=' ') const
Return a substring of self stripped at beginning and/or end.
Double_t Atof() const
Return floating-point value contained in string.
Ssiz_t First(char c) const
Find first occurrence of a character c.
const char * Data() const
Bool_t EqualTo(const char *cs, ECaseCompare cmp=kExact) const
TString & ReplaceAll(const TString &s1, const TString &s2)
Ssiz_t Last(char c) const
Find last occurrence of a character c.
TObjArray * Tokenize(const TString &delim) const
This function is used to isolate sequential tokens in a TString.
TString & Remove(Ssiz_t pos)
TString & Append(const char *cs)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
void Form(const char *fmt,...)
Formats a string using a printf style format descriptor.
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
Ssiz_t Index(const char *pat, Ssiz_t i=0, ECaseCompare cmp=kExact) const
void SetHistFillColor(Color_t color=1)
Color_t GetHistLineColor() const
void SetHistLineStyle(Style_t styl=0)
Style_t GetHistFillStyle() const
Color_t GetHistFillColor() const
void SetHistLineColor(Color_t color=1)
Style_t GetHistLineStyle() const
void SetHistFillStyle(Style_t styl=0)
Width_t GetHistLineWidth() const
void SetHistLineWidth(Width_t width=1)
A zero length substring is legal.
virtual const char * Getenv(const char *env)
Get environment variable.
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
A TTreeCache which exploits parallelized decompression of its own content.
static Bool_t IsParallelUnzip()
Static function that tells wether the multithreading unzipping is activated.
A cache to speed-up the reading of ROOT datasets.
virtual Int_t AddBranch(TBranch *b, Bool_t subgbranches=kFALSE)
Add a branch to the list of branches to be stored in the cache this function is called by the user vi...
virtual Int_t SetBufferSize(Int_t buffersize)
Change the underlying buffer size of the cache.
static void SetLearnEntries(Int_t n=10)
Static function to set the number of entries to be used in learning mode The default value for n is 1...
virtual void SetEntryRange(Long64_t emin, Long64_t emax)
Set the minimum and maximum entry number to be processed this information helps to optimize the numbe...
Bool_t IsAutoCreated() const
void SetAutoCreated(Bool_t val)
virtual Int_t DropBranch(TBranch *b, Bool_t subbranches=kFALSE)
Remove a branch to the list of branches to be stored in the cache this function is called by TBranch:...
virtual void StopLearningPhase()
This is the counterpart of StartLearningPhase() and can be used to stop the learning phase.
virtual void Print(Option_t *option="") const
Print cache statistics.
Class implementing or helping the various TTree cloning method.
Bool_t Exec()
Execute the cloning.
const char * GetWarning() const
void SetCacheSize(Int_t size)
Set the TFile cache size to be used.
Iterator on all the leaves in a TTree and its friend.
TObject * Next()
Go the next friend element.
TTree * fTree
tree being iterated
Option_t * GetOption() const
Returns the object option stored in the list.
TIterator & operator=(const TIterator &rhs)
Overridden assignment operator. Does NOT copy the 'cursor' location!
TIterator * fLeafIter
current leaf sub-iterator.
TIterator * fTreeIter
current tree sub-iterator.
Bool_t fDirection
iteration direction
Helper class to iterate over cluster of baskets.
Long64_t GetEstimatedClusterSize()
Estimate the cluster size.
Long64_t Previous()
Move on to the previous cluster and return the starting entry of this previous cluster.
Long64_t Next()
Move on to the next cluster and return the starting entry of this next cluster.
TClusterIterator(TTree *tree, Long64_t firstEntry)
Regular constructor.
Helper class to prevent infinite recursion in the usage of TTree Friends.
TFriendLock & operator=(const TFriendLock &)
Assignment operator.
TFriendLock(const TFriendLock &)
Copy constructor.
~TFriendLock()
Restore the state of tree the same as before we set the lock.
A TTree represents a columnar dataset.
virtual Int_t Fill()
Fill all branches.
virtual TFriendElement * AddFriend(const char *treename, const char *filename="")
Add a TFriendElement to the list of friends.
TBranchRef * fBranchRef
Branch supporting the TRefTable (if any)
virtual Int_t AddBranchToCache(const char *bname, Bool_t subbranches=kFALSE)
Add branch with name bname to the Tree cache.
virtual TBranch * FindBranch(const char *name)
Return the branch that correspond to the path 'branchname', which can include the name of the tree or...
@ kSplitCollectionOfPointers
virtual TBranch * GetBranch(const char *name)
Return pointer to the branch with the given name in this tree or its friends.
static Int_t GetBranchStyle()
Static function returning the current branch style.
TList * fFriends
pointer to list of friend elements
UInt_t fFriendLockStatus
! Record which method is locking the friend recursion
virtual TLeaf * GetLeafImpl(const char *branchname, const char *leafname)
Return pointer to the 1st Leaf named name in any Branch of this Tree or any branch in the list of fri...
Long64_t fTotBytes
Total number of bytes in all branches before compression.
Int_t fMaxClusterRange
! Memory allocated for the cluster range.
virtual void Show(Long64_t entry=-1, Int_t lenmax=20)
Print values of all active leaves for entry.
TEventList * fEventList
! Pointer to event selection list (if one)
virtual Long64_t GetAutoSave() const
Long64_t GetCacheAutoSize(Bool_t withDefault=kFALSE)
Used for automatic sizing of the cache.
virtual Int_t StopCacheLearningPhase()
Stop the cache learning phase.
std::vector< std::pair< Long64_t, TBranch * > > fSortedBranches
! Branches to be processed in parallel when IMT is on, sorted by average task time
virtual void SetCircular(Long64_t maxEntries)
Enable/Disable circularity for this tree.
Long64_t fSavedBytes
Number of autosaved bytes.
Long64_t GetMedianClusterSize()
Estimate the median cluster size for the TTree.
virtual TClusterIterator GetClusterIterator(Long64_t firstentry)
Return an iterator over the cluster of baskets starting at firstentry.
virtual void ResetBranchAddress(TBranch *)
Tell all of our branches to set their addresses to zero.
char GetNewlineValue(std::istream &inputStream)
Determine which newline this file is using.
virtual Int_t CheckBranchAddressType(TBranch *branch, TClass *ptrClass, EDataType datatype, Bool_t ptr)
Check whether or not the address described by the last 3 parameters matches the content of the branch...
TIOFeatures fIOFeatures
IO features to define for newly-written baskets and branches.
virtual Long64_t GetEntryNumberWithIndex(Long64_t major, Long64_t minor=0) const
Return entry number corresponding to major and minor number.
Long64_t fDebugMin
! First entry number to debug
virtual Long64_t SetEntries(Long64_t n=-1)
Change number of entries in the tree.
virtual TObjArray * GetListOfLeaves()
Bool_t fCacheDoClusterPrefetch
! true if cache is prefetching whole clusters
virtual TBranch * BranchOld(const char *name, const char *classname, void *addobj, Int_t bufsize=32000, Int_t splitlevel=1)
Create a new TTree BranchObject.
virtual TBranch * BranchRef()
Build the optional branch supporting the TRefTable.
virtual Bool_t InPlaceClone(TDirectory *newdirectory, const char *options="")
Copy the content to a new new file, update this TTree with the new location information and attach th...
TFile * GetCurrentFile() const
Return pointer to the current file.
TList * fAliases
List of aliases for expressions based on the tree branches.
virtual TTree * CopyTree(const char *selection, Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Copy a tree with selection.
virtual Int_t FlushBaskets(Bool_t create_cluster=true) const
Write to disk all the basket that have not yet been individually written and create an event cluster ...
virtual Int_t Fit(const char *funcname, const char *varexp, const char *selection="", Option_t *option="", Option_t *goption="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Fit a projected item(s) from a tree.
Int_t SetCacheSizeAux(Bool_t autocache=kTRUE, Long64_t cacheSize=0)
Set the size of the file cache and create it if possible.
Long64_t * fClusterRangeEnd
[fNClusterRange] Last entry of a cluster range.
std::atomic< Long64_t > fIMTZipBytes
! Zip bytes for the IMT flush baskets.
void UseCurrentStyle()
Replace current attributes by current style.
TVirtualTreePlayer * GetPlayer()
Load the TTreePlayer (if not already done).
virtual Long64_t ReadStream(std::istream &inputStream, const char *branchDescriptor="", char delimiter=' ')
Create or simply read branches from an input stream.
virtual void SetDebug(Int_t level=1, Long64_t min=0, Long64_t max=9999999)
Set the debug level and the debug range.
Int_t fScanField
Number of runs before prompting in Scan.
virtual ~TTree()
Destructor.
virtual TTree * GetFriend(const char *) const
Return a pointer to the TTree friend whose name or alias is friendname.
virtual Long64_t CopyEntries(TTree *tree, Long64_t nentries=-1, Option_t *option="", Bool_t needCopyAddresses=false)
Copy nentries from given tree to this tree.
virtual Int_t SetBranchAddress(const char *bname, void *add, TBranch **ptr=0)
Change branch address, dealing with clone trees properly.
virtual Double_t GetMaximum(const char *columname)
Return maximum of column with name columname.
virtual Long64_t GetEntryNumberWithBestIndex(Long64_t major, Long64_t minor=0) const
Return entry number corresponding to major and minor number.
static void SetMaxTreeSize(Long64_t maxsize=100000000000LL)
Set the maximum size in bytes of a Tree file (static function).
virtual TBranch * BronchExec(const char *name, const char *classname, void *addobj, Bool_t isptrptr, Int_t bufsize, Int_t splitlevel)
Helper function implementing TTree::Bronch and TTree::Branch(const char *name, T &obj);.
virtual Int_t UnbinnedFit(const char *funcname, const char *varexp, const char *selection="", Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Unbinned fit of one or more variable(s) from a tree.
Int_t fNClusterRange
Number of Cluster range in addition to the one defined by 'AutoFlush'.
virtual void PrintCacheStats(Option_t *option="") const
Print statistics about the TreeCache for this tree.
virtual Int_t BuildIndex(const char *majorname, const char *minorname="0")
Build a Tree Index (default is TTreeIndex).
TVirtualTreePlayer * fPlayer
! Pointer to current Tree player
virtual void SetMakeClass(Int_t make)
Set all the branches in this TTree to be in decomposed object mode (also known as MakeClass mode).
TObjArray fBranches
List of Branches.
TDirectory * GetDirectory() const
TTreeCache * GetReadCache(TFile *file) const
Find and return the TTreeCache registered with the file and which may contain branches for us.
Bool_t fCacheUserSet
! true if the cache setting was explicitly given by user
Long64_t fEntries
Number of entries.
virtual TFile * ChangeFile(TFile *file)
Called by TTree::Fill() when file has reached its maximum fgMaxTreeSize.
virtual Bool_t GetBranchStatus(const char *branchname) const
Return status of branch with name branchname.
virtual TEntryList * GetEntryList()
Returns the entry list assigned to this tree.
virtual void SetWeight(Double_t w=1, Option_t *option="")
Set tree weight.
void InitializeBranchLists(bool checkLeafCount)
Divides the top-level branches into two vectors: (i) branches to be processed sequentially and (ii) b...
Long64_t * fClusterSize
[fNClusterRange] Number of entries in each cluster for a given range.
Long64_t fFlushedBytes
Number of auto-flushed bytes.
virtual void SetPerfStats(TVirtualPerfStats *perf)
Set perf stats.
std::atomic< Long64_t > fIMTTotBytes
! Total bytes for the IMT flush baskets
virtual void SetCacheLearnEntries(Int_t n=10)
Interface to TTreeCache to set the number of entries for the learning phase.
TEntryList * fEntryList
! Pointer to event selection list (if one)
virtual TVirtualIndex * GetTreeIndex() const
TList * fExternalFriends
! List of TFriendsElement pointing to us and need to be notified of LoadTree. Content not owned.
virtual Long64_t Merge(TCollection *list, Option_t *option="")
Merge the trees in the TList into this tree.
virtual void SetMaxVirtualSize(Long64_t size=0)
virtual void DropBaskets()
Remove some baskets from memory.
virtual void SetAutoSave(Long64_t autos=-300000000)
This function may be called at the start of a program to change the default value for fAutoSave (and ...
Long64_t fMaxEntryLoop
Maximum number of entries to process.
virtual void SetDirectory(TDirectory *dir)
Change the tree's directory.
void SortBranchesByTime()
Sorts top-level branches by the last average task time recorded per branch.
virtual TBranchRef * GetBranchRef() const
virtual Long64_t Process(const char *filename, Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Process this tree executing the TSelector code in the specified filename.
virtual TBranch * BranchImpRef(const char *branchname, const char *classname, TClass *ptrClass, void *addobj, Int_t bufsize, Int_t splitlevel)
Same as TTree::Branch but automatic detection of the class name.
virtual void SetEventList(TEventList *list)
This function transfroms the given TEventList into a TEntryList The new TEntryList is owned by the TT...
void MoveReadCache(TFile *src, TDirectory *dir)
Move a cache from a file to the current file in dir.
Long64_t fAutoFlush
Auto-flush tree when fAutoFlush entries written or -fAutoFlush (compressed) bytes produced.
Int_t fUpdate
Update frequency for EntryLoop.
virtual void ResetAfterMerge(TFileMergeInfo *)
Resets the state of this TTree after a merge (keep the customization but forget the data).
virtual void CopyAddresses(TTree *, Bool_t undo=kFALSE)
Set branch addresses of passed tree equal to ours.
virtual Long64_t GetEntries() const
virtual void SetEstimate(Long64_t nentries=1000000)
Set number of entries to estimate variable limits.
virtual TIterator * GetIteratorOnAllLeaves(Bool_t dir=kIterForward)
Creates a new iterator that will go through all the leaves on the tree itself and its friend.
Int_t fTimerInterval
Timer interval in milliseconds.
Int_t fDebug
! Debug level
virtual Long64_t AutoSave(Option_t *option="")
AutoSave tree header every fAutoSave bytes.
virtual Long64_t GetEntryNumber(Long64_t entry) const
Return entry number corresponding to entry.
virtual TTree * CloneTree(Long64_t nentries=-1, Option_t *option="")
Create a clone of this tree and copy nentries.
Int_t fFileNumber
! current file number (if file extensions)
virtual TLeaf * GetLeaf(const char *branchname, const char *leafname)
Return pointer to the 1st Leaf named name in any Branch of this Tree or any branch in the list of fri...
virtual Long64_t GetZipBytes() const
TObjArray fLeaves
Direct pointers to individual branch leaves.
virtual void Reset(Option_t *option="")
Reset baskets, buffers and entries count in all branches and leaves.
virtual void Print(Option_t *option="") const
Print a summary of the tree contents.
virtual void KeepCircular()
Keep a maximum of fMaxEntries in memory.
virtual void DirectoryAutoAdd(TDirectory *)
Called by TKey and TObject::Clone to automatically add us to a directory when we are read from a file...
virtual Bool_t SetAlias(const char *aliasName, const char *aliasFormula)
Set a tree variable alias.
Long64_t fMaxVirtualSize
Maximum total size of buffers kept in memory.
virtual Long64_t GetTotBytes() const
virtual void SetObject(const char *name, const char *title)
Change the name and title of this tree.
TVirtualPerfStats * fPerfStats
! pointer to the current perf stats object
Double_t fWeight
Tree weight (see TTree::SetWeight)
std::vector< TBranch * > fSeqBranches
! Branches to be processed sequentially when IMT is on
Bool_t EnableCache()
Enable the TTreeCache unless explicitly disabled for this TTree by a prior call to SetCacheSize(0).
Long64_t fDebugMax
! Last entry number to debug
Int_t fDefaultEntryOffsetLen
Initial Length of fEntryOffset table in the basket buffers.
TTree()
Default constructor and I/O constructor.
Long64_t fAutoSave
Autosave tree when fAutoSave entries written or -fAutoSave (compressed) bytes produced.
TBranch * Branch(const char *name, T *obj, Int_t bufsize=32000, Int_t splitlevel=99)
Add a new branch, and infer the data type from the type of obj being passed.
virtual void SetDefaultEntryOffsetLen(Int_t newdefault, Bool_t updateExisting=kFALSE)
Update the default value for the branch's fEntryOffsetLen.
std::atomic< UInt_t > fAllocationCount
indicates basket should be resized to exact memory usage, but causes significant
virtual Int_t GetEntryWithIndex(Int_t major, Int_t minor=0)
Read entry corresponding to major and minor number.
static TTree * MergeTrees(TList *list, Option_t *option="")
Static function merging the trees in the TList into a new tree.
virtual Long64_t GetReadEntry() const
virtual TObjArray * GetListOfBranches()
virtual void SetParallelUnzip(Bool_t opt=kTRUE, Float_t RelSize=-1)
Enable or disable parallel unzipping of Tree buffers.
Long64_t fZipBytes
Total number of bytes in all branches after compression.
virtual void RecursiveRemove(TObject *obj)
Make sure that obj (which is being deleted or will soon be) is no longer referenced by this TTree.
virtual TTree * GetTree() const
TBuffer * fTransientBuffer
! Pointer to the current transient buffer.
Bool_t fIMTEnabled
! true if implicit multi-threading is enabled for this tree
virtual void SetEntryList(TEntryList *list, Option_t *opt="")
Set an EntryList.
virtual Int_t DropBranchFromCache(const char *bname, Bool_t subbranches=kFALSE)
Remove the branch with name 'bname' from the Tree cache.
virtual void AddZipBytes(Int_t zip)
virtual Long64_t LoadTree(Long64_t entry)
Set current entry.
virtual Long64_t ReadFile(const char *filename, const char *branchDescriptor="", char delimiter=' ')
Create or simply read branches from filename.
virtual const char * GetAlias(const char *aliasName) const
Returns the expanded value of the alias. Search in the friends if any.
ROOT::TIOFeatures SetIOFeatures(const ROOT::TIOFeatures &)
Provide the end-user with the ability to enable/disable various experimental IO features for this TTr...
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all branches of entry and return total number of bytes read.
virtual TBasket * CreateBasket(TBranch *)
Create a basket for this tree and given branch.
TList * fUserInfo
pointer to a list of user objects associated to this Tree
virtual Double_t GetMinimum(const char *columname)
Return minimum of column with name columname.
virtual void RemoveFriend(TTree *)
Remove a friend from the list of friends.
virtual Long64_t GetEntriesFast() const
virtual TList * GetUserInfo()
Return a pointer to the list containing user objects associated to this tree.
Long64_t fChainOffset
! Offset of 1st entry of this Tree in a TChain
@ kOnlyFlushAtCluster
If set, the branch's buffers will grow until an event cluster boundary is hit, guaranteeing a basket ...
@ kEntriesReshuffled
If set, signals that this TTree is the output of the processing of another TTree, and the entries are...
virtual Long64_t GetEntriesFriend() const
Return pointer to the 1st Leaf named name in any Branch of this Tree or any branch in the list of fri...
virtual TSQLResult * Query(const char *varexp="", const char *selection="", Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Loop over entries and return a TSQLResult object containing entries following selection.
virtual TBranch * Bronch(const char *name, const char *classname, void *addobj, Int_t bufsize=32000, Int_t splitlevel=99)
Create a new TTree BranchElement.
virtual void SetBasketSize(const char *bname, Int_t buffsize=16000)
Set a branch's basket size.
static void SetBranchStyle(Int_t style=1)
Set the current branch style.
void ImportClusterRanges(TTree *fromtree)
Appends the cluster range information stored in 'fromtree' to this tree, including the value of fAuto...
Long64_t fEstimate
Number of entries to estimate histogram limits.
Int_t FlushBasketsImpl() const
Internal implementation of the FlushBaskets algorithm.
virtual Long64_t LoadTreeFriend(Long64_t entry, TTree *T)
Load entry on behalf of our master tree, we may use an index.
TVirtualIndex * fTreeIndex
Pointer to the tree Index (if any)
virtual void Browse(TBrowser *)
Browse content of the TTree.
TObject * fNotify
! Object to be notified when loading a Tree
virtual TBranch * BranchImp(const char *branchname, const char *classname, TClass *ptrClass, void *addobj, Int_t bufsize, Int_t splitlevel)
Same as TTree::Branch() with added check that addobj matches className.
Long64_t fCacheSize
! Maximum size of file buffers
TList * fClones
! List of cloned trees which share our addresses
std::atomic< Long64_t > fTotalBuffers
! Total number of bytes in branch buffers
Bool_t fCacheDoAutoInit
! true if cache auto creation or resize check is needed
virtual Int_t MakeSelector(const char *selector=0, Option_t *option="")
Generate skeleton selector class for this tree.
virtual void Draw(Option_t *opt)
Default Draw method for all objects.
virtual Int_t MakeClass(const char *classname=0, Option_t *option="")
Generate a skeleton analysis class for this tree.
virtual void SetTreeIndex(TVirtualIndex *index)
The current TreeIndex is replaced by the new index.
virtual void OptimizeBaskets(ULong64_t maxMemory=10000000, Float_t minComp=1.1, Option_t *option="")
This function may be called after having filled some entries in a Tree.
virtual Long64_t Project(const char *hname, const char *varexp, const char *selection="", Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Make a projection of a tree using selections.
virtual Int_t SetCacheEntryRange(Long64_t first, Long64_t last)
interface to TTreeCache to set the cache entry range
static Long64_t GetMaxTreeSize()
Static function which returns the tree file size limit in bytes.
Int_t SetBranchAddressImp(TBranch *branch, void *addr, TBranch **ptr)
Change branch address, dealing with clone trees properly.
Long64_t fMaxEntries
Maximum number of entries in case of circular buffers.
virtual void DropBuffers(Int_t nbytes)
Drop branch buffers to accommodate nbytes below MaxVirtualsize.
virtual void SetName(const char *name)
Change the name of this tree.
virtual void Delete(Option_t *option="")
Delete this tree from memory or/and disk.
virtual TList * GetListOfFriends() const
virtual void Refresh()
Refresh contents of this tree and its branches from the current status on disk.
virtual void SetAutoFlush(Long64_t autof=-30000000)
This function may be called at the start of a program to change the default value for fAutoFlush.
static Long64_t fgMaxTreeSize
Maximum size of a file containing a Tree.
Long64_t fReadEntry
! Number of the entry being processed
TArrayD fIndexValues
Sorted index values.
void MarkEventCluster()
Mark the previous event as being at the end of the event cluster.
virtual Int_t MakeCode(const char *filename=0)
Generate a skeleton function for this tree.
UInt_t fNEntriesSinceSorting
! Number of entries processed since the last re-sorting of branches
virtual Int_t MakeProxy(const char *classname, const char *macrofilename=0, const char *cutfilename=0, const char *option=0, Int_t maxUnrolling=3)
Generate a skeleton analysis class for this Tree using TBranchProxy.
virtual void SetFileNumber(Int_t number=0)
Set fFileNumber to number.
virtual TLeaf * FindLeaf(const char *name)
Find leaf..
virtual void StartViewer()
Start the TTreeViewer on this tree.
Int_t GetMakeClass() const
TDirectory * fDirectory
! Pointer to directory holding this tree
@ kNeedEnableDecomposedObj
@ kMatchConversionCollection
@ kMissingCompiledCollectionProxy
static Int_t fgBranchStyle
Old/New branch style.
virtual void ResetBranchAddresses()
Tell all of our branches to drop their current objects and allocate new ones.
Int_t fNfill
! Local for EntryLoop
virtual void RegisterExternalFriend(TFriendElement *)
Record a TFriendElement that we need to warn when the chain switches to a new file (typically this is...
TArrayI fIndex
Index of sorted values.
virtual Int_t SetCacheSize(Long64_t cachesize=-1)
Set maximum size of the file cache .
void AddClone(TTree *)
Add a cloned tree to our list of trees to be notified whenever we change our branch addresses or when...
virtual void SetBranchStatus(const char *bname, Bool_t status=1, UInt_t *found=0)
Set branch status to Process or DoNotProcess.
TBuffer * GetTransientBuffer(Int_t size)
Returns the transient buffer currently used by this TTree for reading/writing baskets.
ROOT::TIOFeatures GetIOFeatures() const
Returns the current set of IO settings.
virtual const char * GetFriendAlias(TTree *) const
If the 'tree' is a friend, this method returns its alias name.
virtual Bool_t Notify()
Function called when loading a new class library.
virtual void RemoveExternalFriend(TFriendElement *)
Removes external friend.
Bool_t MemoryFull(Int_t nbytes)
Check if adding nbytes to memory we are still below MaxVirtualsize.
Int_t fPacketSize
! Number of entries in one packet for parallel root
virtual Int_t Write(const char *name=0, Int_t option=0, Int_t bufsize=0)
Write this object to the current directory.
TStreamerInfo * BuildStreamerInfo(TClass *cl, void *pointer=0, Bool_t canOptimize=kTRUE)
Build StreamerInfo for class cl.
virtual TBranch * BranchImpArr(const char *branchname, EDataType datatype, std::size_t N, void *addobj, Int_t bufsize, Int_t splitlevel)
virtual Long64_t Scan(const char *varexp="", const char *selection="", Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Loop over tree entries and print entries passing selection.
Bool_t fIMTFlush
! True if we are doing a multithreaded flush.
virtual void AddTotBytes(Int_t tot)
Int_t fMakeClass
! not zero when processing code generated by MakeClass
virtual Int_t LoadBaskets(Long64_t maxmemory=2000000000)
Read in memory all baskets from all branches up to the limit of maxmemory bytes.
static constexpr Long64_t kMaxEntries
TPrincipal * Principal(const char *varexp="", const char *selection="", Option_t *option="np", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)
Interface to the Principal Components Analysis class.
virtual Long64_t GetAutoFlush() const
virtual EDataType GetType() const =0
virtual TClass * GetValueClass() const =0
virtual Bool_t HasPointers() const =0
Abstract interface for Tree Index.
virtual void Append(const TVirtualIndex *, Bool_t delaySort=kFALSE)=0
virtual const char * GetMajorName() const =0
virtual Long64_t GetEntryNumberWithIndex(Long64_t major, Long64_t minor) const =0
virtual Long64_t GetEntryNumberFriend(const TTree *)=0
virtual const char * GetMinorName() const =0
virtual void SetTree(const TTree *T)=0
virtual Long64_t GetN() const =0
virtual Long64_t GetEntryNumberWithBestIndex(Long64_t major, Long64_t minor) const =0
virtual Bool_t IsValidFor(const TTree *parent)=0
Provides the interface for the PROOF internal performance measurement and event tracing.
Abstract base class defining the interface for the plugins that implement Draw, Scan,...
virtual Int_t MakeProxy(const char *classname, const char *macrofilename=0, const char *cutfilename=0, const char *option=0, Int_t maxUnrolling=3)=0
virtual Long64_t Scan(const char *varexp, const char *selection, Option_t *option, Long64_t nentries, Long64_t firstentry)=0
virtual void UpdateFormulaLeaves()=0
virtual Long64_t DrawSelect(const char *varexp, const char *selection, Option_t *option, Long64_t nentries, Long64_t firstentry)=0
virtual Int_t MakeCode(const char *filename)=0
virtual Int_t UnbinnedFit(const char *formula, const char *varexp, const char *selection, Option_t *option, Long64_t nentries, Long64_t firstentry)=0
virtual Long64_t GetEntries(const char *)=0
virtual TSQLResult * Query(const char *varexp, const char *selection, Option_t *option, Long64_t nentries, Long64_t firstentry)=0
virtual TPrincipal * Principal(const char *varexp="", const char *selection="", Option_t *option="np", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)=0
virtual void StartViewer(Int_t ww, Int_t wh)=0
virtual Int_t MakeReader(const char *classname, Option_t *option)=0
virtual TVirtualIndex * BuildIndex(const TTree *T, const char *majorname, const char *minorname)=0
virtual TTree * CopyTree(const char *selection, Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)=0
virtual Long64_t Process(const char *filename, Option_t *option="", Long64_t nentries=kMaxEntries, Long64_t firstentry=0)=0
virtual void SetEstimate(Long64_t n)=0
static TVirtualTreePlayer * TreePlayer(TTree *obj)
Static function returning a pointer to a Tree player.
virtual Int_t MakeClass(const char *classname, const char *option)=0
virtual Int_t Fit(const char *formula, const char *varexp, const char *selection, Option_t *option, Option_t *goption, Long64_t nentries, Long64_t firstentry)=0
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Bool_t IsImplicitMTEnabled()
Returns true if the implicit multi-threading in ROOT is enabled.
void CallRecursiveRemoveIfNeeded(TObject &obj)
call RecursiveRemove for obj if gROOT is valid and obj.TestBit(kMustCleanup) is true.
void ToHumanReadableSize(value_type bytes, Bool_t si, Double_t *coeff, const char **units)
Return the size expressed in 'human readable' format.
EFromHumanReadableSize FromHumanReadableSize(std::string_view str, T &value)
Convert strings like the following into byte counts 5MB, 5 MB, 5M, 3.7GB, 123b, 456kB,...
Short_t Max(Short_t a, Short_t b)
Short_t Min(Short_t a, Short_t b)
Double_t Median(Long64_t n, const T *a, const Double_t *w=0, Long64_t *work=0)
Return the median of the array a where each entry i has weight w[i] .
Long64_t BinarySearch(Long64_t n, const T *array, T value)
@ kUseGlobal
Use the global compression algorithm.
@ kInherit
Some objects use this value to denote that the compression algorithm should be inherited from the par...
@ kUseCompiledDefault
Use the compile-time default setting.