CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
L1GlobalTriggerFunctions.cc File Reference
#include "L1Trigger/GlobalTrigger/interface/L1GlobalTriggerFunctions.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"

Go to the source code of this file.

Functions

int factorial (int n)
 factorial function More...
 
bool hexStringToInt64 (const std::string &hexString, std::vector< unsigned long long > &vecInt64)
 

Function Documentation

int factorial ( int  n)

factorial function

Definition at line 13 of file L1GlobalTriggerFunctions.cc.

References factorial().

Referenced by L1GtMuonCondition::evaluateCondition(), L1GtCaloCondition::evaluateCondition(), factorial(), edm::Lumi3DReWeighting::weight3D_init(), and reweight::LumiReWeighting::weight3D_init().

13  {
14  return (n <= 0) ? 1 : (n * factorial(n - 1));
15 }
int factorial(int n)
factorial function
bool hexStringToInt64 ( const std::string &  ,
std::vector< unsigned long long > &   
)

convert a hex string to a vector of 64-bit integers, with the vector size depending on the string size return false in case of error

Definition at line 18 of file L1GlobalTriggerFunctions.cc.

References LogTrace.

Referenced by L1GtCorrelationCondition::evaluateCondition().

19  {
20 
21  int iVec = 0;
22  size_t initialPos = 0;
23  unsigned long long iValue = 0ULL;
24 
25  do {
26 
27  iValue = 0ULL;
28 
29  if (stringToNumber<unsigned long long> (iValue,
30  hexString.substr(initialPos, 16), std::hex)) {
31 
32  LogTrace("L1GlobalTrigger") << "\n String " << hexString.substr(
33  initialPos, 16) << " converted to hex value 0x" << std::hex
34  << iValue << std::dec << std::endl;
35 
36  vecInt64[iVec] = iValue;
37  } else {
38  LogTrace("L1GlobalTrigger")
39  << "\nstringToNumber failed to convert string "
40  << hexString.substr(initialPos, 16) << std::endl;
41 
42  return false;
43  }
44 
45  initialPos = +16;
46  iVec++;
47  } while (hexString.size() >= (initialPos + 16));
48 
49  return true;
50 }
#define LogTrace(id)