Git Product home page Git Product logo

dynamicttree's Introduction

DynamicTTreeReader

This class is an interface to any ROOT TTree. It aims to ease the access of an existing TTree: the user needs only to define a set of precompiler variables containing the branches to be accessed (and their respective types).

The interface will be created by a set of precompiler macros in the form of a Class from which one can access the TTree branches.

A set of methods is also defined in order to provide a simple way to handle iteration over all the TTree entries.

How to define a new interface:

  • Include the DTR header file:
    #include "interface/DynamicTTreeReader.h"
        
  • define the name of the interface class and the set of branches:
    #define DYNAMIC_TREE_NAME DynamicTTreeReader
    
    #define DATA_TABLE                              \
    DATA(int, i)                                    \
    DATA(float, f)
    
    #define DATA_VECT_TABLE                         \
    DATA(int, vi, i)
    
    #define DATA_CLASS_TABLE                        \
    DATA(std::string, s)
        
  • include the precompiler macros to generate the class body and methods: the following line must be placed below the branches definition
    #include "src/DynamicTTreeReader.cc"
        
  • test/DTR_SimpleExample.cpp contains a working example.

Branches type

Following the different ways in which basic type variables, c-arrays and classes are handled inside the ROOT TTree class there are three different types of branches definition:

  • DATA_TABLE(type, name): for basic type branches.
  • DATA_VECT_TABLE(type, name, size): for c-arrays.
  • DATA_CLASS_TABLE(class, name): for c++ classes.

dynamicttree's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.