/////////////////////////////////////////////////////////////////////// // // Code for rebinning an axis logarithmically with "equal" bin widths // originally written by Dr. Xianguo Lu, University of Oxford, 2015 // // Author: Martti Nirkko // // REVISION HISTORY: // 25/02/2019 : M. Nirkko - Created file // //////////////////////////////////////////////////////////////////////// #ifndef __RAT_BinLog__ #define __RAT_BinLog__ #include namespace RAT { /// Pass the axis to be rebinned as well as a minimum value for the log scale void BinLog( TAxis *axis, const Double_t non0start=-999. ); } // namespace RAT #endif