Frederik Beaujean

Results 71 comments of Frederik Beaujean

It looks like this has little to do with BAT itself. Have you tried building/running the ROOT examples with this setup? Do you get a similar problem there?

Dear @gipert , thanks a lot for your effort. I think it's great if life is easier for mac users, at least for those using homebrew. Obviously we have to...

I"m surprised, too. What compiler and version do you use? I suspect it comes from ROOT's CXXFLAGS that we take over

Many `README` files in the example refer to the Short intro to BAT. When the manual is ready, we should change these references

The current status of the manual is in the [manual branch](https://github.com/bat/bat/tree/manual)

An even simpler way might be to enforce the C++ standard in the build flags to ensure that future deprecations don't lead to trouble. But of course that would lead...

An example issue reported by a user ``` ~/BAT-0.9.4.1$ make /Library/Developer/CommandLineTools/usr/bin/make all-recursive Making all in src /usr/local/bin/rootcling -f libBAT_rdict.cxx.tmp -s libBAT`test .odule = .yes && echo .so || echo .dylib`...

I build bat with g++-9.3 and root 6.22 that sets -std=c++11 itself ``` ../configure CXXFLAGS='-std=c++03' # fails with root6 ../configure CXXFLAGS='-std=c++11' # works ../configure CXXFLAGS='-std=c++14' # works ../configure CXXFLAGS='-std=c++17' make[3]:...

I think there is nothing to in this case because all subclasses of `BCFitter` have a specific data format: histogram, graph etc. that is distinct from `BCDataSet`. In addition, we...

I see the need for parallelization but I fear you didn't get it right. You can't just split the serial Markov chain and run iterations in parallel. What you can...