STDet: replace boost::bind with lambda
std::bind has significant overhead (both at runtime as well as compile time) compared to a lambda (std::bind makes inlining completely impossible). As a result std::bind should be avoided.
GitLab jobs artifacts no longer stored forever as of Monday, November 4th 08:30h. Further information under https://cern.ch/otg0152576
std::bind has significant overhead (both at runtime as well as compile time) compared to a lambda (std::bind makes inlining completely impossible). As a result std::bind should be avoided.