CMS 3D CMS Logo

Classes | Typedefs | Functions
MuonPathCorFitter.h File Reference
#include "L1Trigger/DTTriggerPhase2/interface/MuonPathFitter.h"

Go to the source code of this file.

Classes

class  MuonPathCorFitter
 

Typedefs

using mp_group = std::vector< cmsdt::metaPrimitive >
 

Functions

bool bxSort (const cmsdt::bx_sl_vector &vA, const cmsdt::bx_sl_vector &vB)
 

Typedef Documentation

◆ mp_group

using mp_group = std::vector<cmsdt::metaPrimitive>

Definition at line 19 of file MuonPathCorFitter.h.

Function Documentation

◆ bxSort()

bool bxSort ( const cmsdt::bx_sl_vector vA,
const cmsdt::bx_sl_vector vB 
)
inline

Definition at line 10 of file MuonPathCorFitter.h.

References cmsdt::bx_sl_vector::bx, and cmsdt::bx_sl_vector::sl.

Referenced by MuonPathCorFitter::run().

10  {
11  if (vA.bx > vB.bx)
12  return true;
13  else if (vA.bx == vB.bx)
14  return (vA.sl > vB.sl);
15  else
16  return false;
17 }