Skip to content

Instantly share code, notes, and snippets.

@csullivan
Created February 3, 2017 15:55
Show Gist options
  • Save csullivan/3a3a9d91716efba3cb86894541ee641a to your computer and use it in GitHub Desktop.
Save csullivan/3a3a9d91716efba3cb86894541ee641a to your computer and use it in GitHub Desktop.
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