Created
February 3, 2017 15:55
-
-
Save csullivan/3a3a9d91716efba3cb86894541ee641a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template<typename ...Args> | |
void hist(bool conditional, TRuntimeObjects& obj, Args&&... args) { | |
if (conditional) { obj.FillHistogram(std::forward<Args>(args)...); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment