Project
Loading...
Searching...
No Matches
o2::mergers::algorithm Namespace Reference

Classes

struct  MatchedCollectedObjects
 

Functions

void merge (TObject *const target, TObject *const other)
 A function which merges TObjects.
 
void merge (VectorOfTObjectPtrs &targets, const VectorOfTObjectPtrs &others)
 A function which merges two vectors of TObjects.
 
void deleteTCollections (TObject *obj)
 
size_t estimateTreeSize (TTree *tree)
 
auto collectUnderlyingObjects (TCanvas *canvas) -> std::vector< TObject * >
 
auto matchCollectedToPairs (const std::vector< TObject * > &targetObjects, const std::vector< TObject * > otherObjects) -> std::vector< MatchedCollectedObjects >
 
void deleteRecursive (TCollection *Coll)
 

Function Documentation

◆ collectUnderlyingObjects()

auto o2::mergers::algorithm::collectUnderlyingObjects ( TCanvas *  canvas) -> std::vector<TObject*>

Definition at line 55 of file MergerAlgorithm.cxx.

◆ deleteRecursive()

void o2::mergers::algorithm::deleteRecursive ( TCollection *  Coll)

Definition at line 221 of file MergerAlgorithm.cxx.

◆ deleteTCollections()

void o2::mergers::algorithm::deleteTCollections ( TObject obj)

Definition at line 237 of file MergerAlgorithm.cxx.

◆ estimateTreeSize()

size_t o2::mergers::algorithm::estimateTreeSize ( TTree *  tree)

Definition at line 41 of file MergerAlgorithm.cxx.

◆ matchCollectedToPairs()

auto o2::mergers::algorithm::matchCollectedToPairs ( const std::vector< TObject * > &  targetObjects,
const std::vector< TObject * >  otherObjects 
) -> std::vector<MatchedCollectedObjects>

Definition at line 85 of file MergerAlgorithm.cxx.

◆ merge() [1/2]

void o2::mergers::algorithm::merge ( TObject *const  target,
TObject *const  other 
)

A function which merges TObjects.

Definition at line 98 of file MergerAlgorithm.cxx.

◆ merge() [2/2]

void o2::mergers::algorithm::merge ( VectorOfTObjectPtrs targets,
const VectorOfTObjectPtrs others 
)

A function which merges two vectors of TObjects.

Iterates through others vector and searches for the object with the same name in targets vector. If such item exists it is merged into the target object. If not than the item is pushed to the end of targets vector.

Definition at line 207 of file MergerAlgorithm.cxx.