CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1GlobalTriggerFunctions.cc
Go to the documentation of this file.
1 
3 int factorial(int n) {
4  return (n <= 0) ? 1:(n*factorial(n-1));
5 }
6 
int factorial(int n)
factorial function