vepadulano / PyRDF

Python Library for doing ROOT RDataFrame analysis
https://pyrdf.readthedocs.io/en/latest/
9 stars 7 forks source link

Add support for Count operation in distributed backend #74

Closed vepadulano closed 5 years ago

vepadulano commented 5 years ago

The Count operation can now be used also in a distributed environment. This very basic mplementation adds another couple of ifs to the list in the reduce function. Since in Python 2 Count returns a long another condition check is needed.

A test has been added accordingly

vepadulano commented 5 years ago

addresses #67