CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/L1Trigger/GlobalTrigger/src/L1GlobalTriggerFunctions.cc

Go to the documentation of this file.
00001 
00002 
00003 int factorial(int n) {
00004     return (n <= 0) ? 1:(n*factorial(n-1));
00005 }
00006