Logo ROOT  
Reference Guide
TMPWorkerTree.h File Reference
#include "TMPWorker.h"
#include "TFile.h"
#include "TEntryList.h"
#include "TEventList.h"
#include "TH1.h"
#include "TKey.h"
#include "TSelector.h"
#include "TTree.h"
#include "TTreeCache.h"
#include "TTreeReader.h"
#include <memory>
#include <string>
#include <sstream>
#include <type_traits>
#include <unistd.h>
Include dependency graph for TMPWorkerTree.h:
This graph shows which files directly or indirectly include this file:

Classes

class  TMPWorkerTree
 This class works in conjuction with TTreeProcessorMP, reacting to messages received from it as specified by the Notify and HandleInput methods. More...
 
class  TMPWorkerTreeFunc< F >
 Templated derivation of TMPWorkerTree handlign generic function tree processing. More...
 
class  TMPWorkerTreeSel
 Templated derivation of TMPWorkerTree handlign selector tree processing. More...
 

Functions

template<class T , typename std::enable_if< std::is_pointer< T >::value &&std::is_constructible< TObject *, T >::value &&!std::is_constructible< TCollection *, T >::value >::type * = nullptr>
void DetachRes (T res)
 Auxilliary templated functions If the user lambda returns a TH1F*, TTree*, TEventList*, we incur in the problem of that object being automatically owned by the current open file. More...
 

Function Documentation

◆ DetachRes()

template<class T , typename std::enable_if< std::is_pointer< T >::value &&std::is_constructible< TObject *, T >::value &&!std::is_constructible< TCollection *, T >::value >::type * = nullptr>
void DetachRes ( res)

Auxilliary templated functions If the user lambda returns a TH1F*, TTree*, TEventList*, we incur in the problem of that object being automatically owned by the current open file.

For these three types, we call SetDirectory(nullptr) to detach the returned object from the file we are reading the TTree from. Note: the only sane case in which this should happen is when a TH1F* is returned.

Definition at line 137 of file TMPWorkerTree.h.